UtilitiesSetRegistryString Method |
Save a string to the registry. Correctly handles null Value, saving as String.Empty
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static void SetRegistryString(
RegistryKey oReg,
string sName,
string sValue
)
Public Shared Sub SetRegistryString (
oReg As RegistryKey,
sName As String,
sValue As String
)
public:
static void SetRegistryString(
RegistryKey^ oReg,
String^ sName,
String^ sValue
)
Parameters
- oReg
- Type: Microsoft.Win32RegistryKey
The registry key into which the value will be written. - sName
- Type: SystemString
The name of the value. - sValue
- Type: SystemString
The value to write.
See Also