RegValueEntryKind Enumeration | regdiff Code Documentation |
This class defines the known registry value types. It includes more types than the standard .Net enum RegistryValueKind
Namespace: com.tikumo.regis3Assembly: regis3 (in regis3.dll) Version: 3.4.0.0 (3.4.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Unknown | -1 | Registry value kind unknown or invalid | |
None | 0 | No value kind associated | |
SZ | 1 | "String Zero-Terminated": a string | |
ExpandSZ | 2 | "Expandable String": a string that can include environment variable specifications. By default, Windows will implicitly expand the string when reading it. | |
Binary | 3 | Binary data | |
DWord | 4 | A (unsigned) integer (little endian = intel default) | |
DWordBigEndian | 5 | A (unsigned) integer (big endian). Not sure if I have ever seen one of these beasts live in the wild | |
Link | 6 | Registry link | |
MultiSZ | 7 | A list of multiple strings. | |
ResourceList | 8 | A Windows NT resource list | |
FullResourceDescriptor | 9 | A Windows NT full resource descriptor | |
ResourceRequirementsList | 10 | A Windows NT resource requirements list | |
QWord | 11 | A 64-bit integer (little endian = intel default) |
See Also