RegValueEntry Members

tikumo.regis3

RegValueEntry Members regdiff Code Documentation

The RegValueEntry type exposes the following members.

Constructors

  NameDescription
Public methodRegValueEntry 
The default constructor creates an unnamed value without contenet.
Public methodRegValueEntry(String)
This constructor creates a named value with unknown content
Public methodRegValueEntry(RegValueEntry)
Copy Constructor
Public methodRegValueEntry(RegistryKey, String)
This constructor creates a named value from a Windows registry value
Back to Top
Methods

  NameDescription
Public methodAsByteArray
Describe the content of this value as a byte array. This should be used only
Public methodSetBinaryType
Given hex-encoded binary data, set a blob type
Public methodSetEscapedIntValue
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$$
Public methodSetIntValue
Define an integer value
Public methodSetStringValue
Define a string value
Public methodWriteRegFileFormat
Helper function: Export this function in .REG file format to an output stream
Public methodWriteToTheRegistry
Write this value back to the Windows registry
Back to Top
Fields

  NameDescription
Public fieldName
Name of this value. Warning: for default values this is going to be null.
Public fieldRemoveFlag
If this flag is set, you really want to remove the registry value rather than add it
Back to Top
Properties

  NameDescription
Public propertyIsDefaultValue
Returns true if this object represents the default ("null") value in a registry key
Public propertyKind
Type of data encoded in this object
Public propertyValue
Value data
Back to Top
See Also