Метод | Описание | |
---|---|---|
DeleteFolder ( string path ) : bool |
Delete a folder in the registry
|
|
DeleteKey ( string keyPath, string keyName ) : bool |
Delete a registry key
|
|
GetRegisitryValue ( string keyPath, string keyName ) : string |
|
|
SetRegistryValue ( string keyPath, string keyName, string value, bool verbose = true ) : bool |
Set the value of a registry key
|
public static DeleteFolder ( string path ) : bool | ||
path | string | The folder to delete |
Результат | bool |
public static DeleteKey ( string keyPath, string keyName ) : bool | ||
keyPath | string | The path to the registry key |
keyName | string | The name of the registry key |
Результат | bool |
public static GetRegisitryValue ( string keyPath, string keyName ) : string | ||
keyPath | string | The path to the registry key |
keyName | string | The name of the registry key |
Результат | string |
public static SetRegistryValue ( string keyPath, string keyName, string value, bool verbose = true ) : bool | ||
keyPath | string | The path to the registry key |
keyName | string | The name of the registry key |
value | string | The value to set the key to |
verbose | bool | Log exceptions |
Результат | bool |