Property | Type | Description | |
---|---|---|---|
Dictionary | ConfigRegistryEntry>.SortedDictionary |
Method | Description | |
---|---|---|
ConfigRegistry ( string Name ) : System |
Construct a new instance.
|
|
ConfigRegistry ( string Name, string FileName ) : System |
Construct a new instance.
|
|
Get ( string Key ) : |
Lookup the key value and return the corresponding ConfigRegistryEntry.
|
|
GetBINARY ( string Key ) : byte[] |
Lookup the key value and return the corresponding value.
|
|
GetDWORD ( string Key ) : uint |
Lookup the key value and return the corresponding value.
|
|
GetSZ ( string Key ) : string |
Lookup the key value and return the corresponding value.
|
|
Read ( XmlReader Reader ) : void |
Read the registry from an XML stream.
|
|
Read ( string FileName ) : void |
Read the registry from an XML file.
|
|
Set ( string Key, byte Value ) : bool |
Set a key for a BINARY value, creating a new key if necessary.
|
|
Set ( string Key, string Value ) : bool |
Set a key for a SZ value, creating a new key if necessary.
|
|
Set ( string Key, string Type, string Value ) : bool |
Set the value of the specified key, creating a new value if necessary from a string.
|
|
Set ( string Key, uint Value ) : bool |
Set a key for a DWORD value, creating a new key if necessary.
|
|
Write ( |
Write the registry to an XML stream.
|
|
Write ( string FileName ) : void |
Write the registry to an XML file.
|
public ConfigRegistry ( string Name ) : System | ||
Name | string | The topmost element of the registry. |
return | System |
public ConfigRegistry ( string Name, string FileName ) : System | ||
Name | string | The topmost element of the registry. |
FileName | string | The file to read |
return | System |
public Get ( string Key ) : |
||
Key | string | The key to lookup. |
return |
public GetBINARY ( string Key ) : byte[] | ||
Key | string | The key to lookup. |
return | byte[] |
public GetDWORD ( string Key ) : uint | ||
Key | string | The key to lookup. |
return | uint |
public GetSZ ( string Key ) : string | ||
Key | string | The key to lookup. |
return | string |
public Read ( XmlReader Reader ) : void | ||
Reader | XmlReader | The stream to read |
return | void |
public Read ( string FileName ) : void | ||
FileName | string | The file to read |
return | void |
public Set ( string Key, byte Value ) : bool | ||
Key | string | The key to set. |
Value | byte | The value to set it to. |
return | bool |
public Set ( string Key, string Value ) : bool | ||
Key | string | The key to set. |
Value | string | The value to set it to. |
return | bool |
public Set ( string Key, string Type, string Value ) : bool | ||
Key | string | The key to set. |
Type | string | The type of data to create. |
Value | string | The data value as a string. |
return | bool |
public Set ( string Key, uint Value ) : bool | ||
Key | string | The key to set. |
Value | uint | The value to set it to. |
return | bool |
public Write ( |
||
Writer | The stream to write | |
return | void |
public Write ( string FileName ) : void | ||
FileName | string | The file to write. |
return | void |