Click or drag to resize
UtilitiesGetRegistryInt Method
Returns an integer from the registry, or a default.

Namespace: Fiddler
Assembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax
public static int GetRegistryInt(
	RegistryKey oReg,
	string sName,
	int iDefault
)

Parameters

oReg
Type: Microsoft.Win32RegistryKey
The Registry key in which to find the value.
sName
Type: SystemString
The registry value name.
iDefault
Type: SystemInt32
Default to return if the registry key is missing or cannot be used as an integer

Return Value

Type: Int32
The retrieved integer, or the default.
See Also