RegValueEntry Members | regdiff Code Documentation |
The RegValueEntry type exposes the following members.
Back to Top
Back to Top
Back to Top
Back to Top
Constructors
Name | Description | |
---|---|---|
RegValueEntry |
The default constructor creates an unnamed value without contenet.
| |
RegValueEntry(String) |
This constructor creates a named value with unknown content
| |
RegValueEntry(RegValueEntry) |
Copy Constructor
| |
RegValueEntry(RegistryKey, String) |
This constructor creates a named value from a Windows registry value
|
Methods
Name | Description | |
---|---|---|
AsByteArray |
Describe the content of this value as a byte array. This should be used only
| |
SetBinaryType |
Given hex-encoded binary data, set a blob type
| |
SetEscapedIntValue |
Define an escaped integer value. If you're reading .REG files and you use the RegEnvReplace class to replace
content with variables at runtime, you can specify something like this:
"SomeValue"=dword:$$VARIABLE$$
| |
SetIntValue |
Define an integer value
| |
SetStringValue |
Define a string value
| |
WriteRegFileFormat |
Helper function: Export this function in .REG file format to an output stream
| |
WriteToTheRegistry |
Write this value back to the Windows registry
|
Fields
Name | Description | |
---|---|---|
Name |
Name of this value. Warning: for default values this is going to be null.
| |
RemoveFlag |
If this flag is set, you really want to remove the registry value rather than add it
|
Properties
Name | Description | |
---|---|---|
IsDefaultValue |
Returns true if this object represents the default ("null") value in a registry key
| |
Kind |
Type of data encoded in this object
| |
Value |
Value data
|
See Also