RegValueEntryKind Enumeration

tikumo.regis3

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.regis3
Assembly: regis3 (in regis3.dll) Version: 3.4.0.0 (3.4.0.0)

Syntax

public enum RegValueEntryKind
public enum RegValueEntryKind
Members

  Member nameValueDescription
Unknown-1 Registry value kind unknown or invalid
None0 No value kind associated
SZ1 "String Zero-Terminated": a string
ExpandSZ2 "Expandable String": a string that can include environment variable specifications. By default, Windows will implicitly expand the string when reading it.
Binary3 Binary data
DWord4 A (unsigned) integer (little endian = intel default)
DWordBigEndian5 A (unsigned) integer (big endian). Not sure if I have ever seen one of these beasts live in the wild
Link6 Registry link
MultiSZ7 A list of multiple strings.
ResourceList8 A Windows NT resource list
FullResourceDescriptor9 A Windows NT full resource descriptor
ResourceRequirementsList10 A Windows NT resource requirements list
QWord11 A 64-bit integer (little endian = intel default)
See Also