Class Registry
Information about a registry key or value.
Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
public sealed class Registry : IMessage<Registry>, IEquatable<Registry>, IDeepCloneable<Registry>, IBufferMessage, IMessage
Constructors
Registry()
Declaration
public Registry()
Registry(Registry)
Declaration
public Registry(Registry other)
Parameters
| Type | Name | Description |
|---|---|---|
| Registry | other |
Properties
RegistryKey
Registry key associated with an application or system component (e.g., HKEY_, HKCU\Environment...).
Declaration
public string RegistryKey { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RegistryValueBinaryData
Binary data associated with a registry value. This field is only populated if the registry value type is BINARY. This field is not populated for other registry value types.
Declaration
public ByteString RegistryValueBinaryData { get; set; }
Property Value
| Type | Description |
|---|---|
| ByteString |
RegistryValueData
Data associated with a registry value (e.g. %USERPROFILE%\Local Settings\Temp).
Declaration
public string RegistryValueData { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RegistryValueName
Name of the registry value associated with an application or system component (e.g. TEMP).
Declaration
public string RegistryValueName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RegistryValueType
Type of the registry value.
Declaration
public Registry.Types.Type RegistryValueType { get; set; }
Property Value
| Type | Description |
|---|---|
| Registry.Types.Type |