Enum Registry.Types.Type
Type of the registry value. These values are based on the Windows Registry value types: https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry-value-types
Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
public enum Registry.Types.Type
Fields
| Name | Description |
|---|---|
| Binary | Binary data in any form. |
| Dword | A 32-bit number. |
| DwordBigEndian | A 32-bit number in big-endian format. |
| DwordLittleEndian | A 32-bit number in little-endian format. |
| ExpandSz | A null-terminated string that contains unexpanded references to environment variables |
| Link | A null-terminated Unicode string that contains the target path of a symbolic link. |
| MultiSz | A sequence of null-terminated strings, terminated by an empty string |
| None | The registry value is not set and only the key exists. |
| Qword | A 64-bit number. |
| QwordLittleEndian | A 64-bit number in little-endian format. |
| ResourceList | A device driver resource list. |
| Sz | A null-terminated string. |
| Unspecified | Default registry value type used when the type is unknown. |