RegistryControllerSetRegistryValue Method |
Sets the registry value.
Namespace:
Xcalibur.Controllers
Assembly:
Xcalibur.Controllers (in Xcalibur.Controllers.dll) Version: 1.0.5.0 (1.0.0.0)
Syntax public static void SetRegistryValue(
string registryPath,
string key,
Object value,
RegistryValueKind kind
)
Public Shared Sub SetRegistryValue (
registryPath As String,
key As String,
value As Object,
kind As RegistryValueKind
)
public:
static void SetRegistryValue(
String^ registryPath,
String^ key,
Object^ value,
RegistryValueKind kind
)
static member SetRegistryValue :
registryPath : string *
key : string *
value : Object *
kind : RegistryValueKind -> unit
Parameters
- registryPath
- Type: SystemString
The registry path. - key
- Type: SystemString
The subkey. - value
- Type: SystemObject
The subkey value. - kind
- Type: Microsoft.Win32RegistryValueKind
The registry value kind.
See Also