Value

This class represents a value of a registry key.

Members

Properties

name
string name [@property getter]

The name of the value. If the value represents a default value of a key, which has no name, the returned string will be of zero length.

type
REG_VALUE_TYPE type [@property getter]

The type of value.

value_BINARY
byte[] value_BINARY [@property getter]

Obtains the value as a binary blob.

value_DWORD
uint value_DWORD [@property getter]

Obtains the current value as a 32-bit unsigned integer, ordered correctly according to the current architecture.

value_EXPAND_SZ
string value_EXPAND_SZ [@property getter]

Obtains the current value as a string, within which any environment variables have undergone expansion. This function works with the same value-types as value_SZ.

value_MULTI_SZ
string[] value_MULTI_SZ [@property getter]

Obtains the current value as an array of strings.

value_QWORD
ulong value_QWORD [@property getter]

Obtains the value as a 64-bit unsigned integer, ordered correctly according to the current architecture.

value_SZ
string value_SZ [@property getter]

Obtains the current value of the value as a string. If the value's type is REG_EXPAND_SZ the returned value is <b>not</b> expanded; value_EXPAND_SZ should be called

Meta