Class CLValueDictionary
Represents a parsed CLValue dictionary entry containing a raw value, a seed URef, and an item key string.
Inherited Members
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class CLValueDictionary
Properties
| Edit this page View SourceItemKey
The string key identifying the item in the dictionary.
Declaration
public string ItemKey { get; }
Property Value
| Type | Description |
|---|---|
| string |
Seed
The seed URef associated with the dictionary.
Declaration
public URef Seed { get; }
Property Value
| Type | Description |
|---|---|
| URef |
Value
The raw value bytes of the dictionary entry.
Declaration
public byte[] Value { get; }
Property Value
| Type | Description |
|---|---|
| byte[] |
Methods
| Edit this page View SourceParse(byte[])
Parses a byte array into a CLValueDictionary instance.
Declaration
public static CLValueDictionary Parse(byte[] bytes)
Parameters
| Type | Name | Description |
|---|---|---|
| byte[] | bytes | The raw bytes to parse. |
Returns
| Type | Description |
|---|---|
| CLValueDictionary | A new CLValueDictionary instance. |