Class RegistryEntry
A structure that represents a location in the registry.
Inheritance
System.Object
RegistryEntry
Namespace: Syncfusion.Win32
Assembly: Syncfusion.Shared.Base.dll
Syntax
public sealed class RegistryEntry : ValueType
Remarks
This is a simple structure that refers to a Registry location through the root RegistryKey and the subkey.
Constructors
RegistryEntry(RegistryKey, String)
Creates a new instance of the RegistryEntry class and initializes it with the root RegistryKey and subkey.
Declaration
public RegistryEntry(RegistryKey key, string subkey)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.Win32.RegistryKey | key | The root RegistryKey. |
| System.String | subkey | The subkey string. |
Properties
SourceRegistryKey
Gets / sets the root RegistryKey.
Declaration
public RegistryKey SourceRegistryKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Microsoft.Win32.RegistryKey | A RegistryKey value. |
SourceRegistrySubKey
Gets /sets the subkey under the root RegistryKey.
Declaration
public string SourceRegistrySubKey { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A string value representing the subkey. |