RegistryValue class

Represents an individual data value in the Windows Registry.

Constructors

RegistryValue(String name, RegistryValueType type, Object data)
Creates an instance of RegistryValue with the specified name, type, and data.
const
RegistryValue.fromWin32(String name, int type, Pointer<Uint8> byteData, int dataLength)
Constructs a RegistryValue from Win32 Registry data.
factory

Properties

data Object
The data associated with the Registry value.
final
hashCode int
The hash code for this object.
no setteroverride
name String
The name of the Registry value.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
toWin32 PointerData
Converts the RegistryValue to Win32-compatible data.
no setter
type RegistryValueType
The type of the Registry value.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override