This class contains the registry utility functions.
Declaration Syntax| C# | Visual Basic | Visual C++ |
public static class RegistryUtils
Public NotInheritable Class RegistryUtils
public ref class RegistryUtils abstract sealed
Members| All Members | Methods | ||||
| Icon | Member | Description |
|---|---|---|
![]() ![]() | GetBytesValue(RegistryKey, String, String) |
Return a binary value from the registry.
|
![]() ![]() | GetIntegerValue(RegistryKey, String, String) |
Return a int value from the registry.
|
![]() ![]() | GetRegistryValue<(Of <(T>)>)(RegistryHive, String, String, RegistryValueKind, T%) |
Return the a registry value from a Hive
|
![]() ![]() | GetStringValue(RegistryKey, String, String) |
Return a string value from the registry.
|
![]() ![]() | GetValue(RegistryKey, String, String) |
Return a value from the registry.
|
![]() ![]() | SetBinaryValue(RegistryKey, String, String, array<Byte>[]()[]) |
Save a binary value in the registry. The SubKey will be created if it does not exists.
|
![]() ![]() | SetIntegerValue(RegistryKey, String, String, Int32) |
Save a integer value in the registry. The SubKey will be created if it does not exists.
|
![]() ![]() | SetStringValue(RegistryKey, String, String, String) |
Save a string value in the registry. The SubKey will be created if it does not exists.
|
![]() ![]() | SetValue(RegistryKey, String, String, Object, RegistryValueKind) |
Save a value in the registry. The SubKey will be created if it does not exists.
|
Inheritance Hierarchy| Object | |
![]() | RegistryUtils |
Assembly: Devolutions.Utils (Module: Devolutions.Utils)


