Casper.Network.SDK
Show / Hide Table of Contents

Class CLValueDictionary

Represents a parsed CLValue dictionary entry containing a raw value, a seed URef, and an item key string.

Inheritance
object
CLValueDictionary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class CLValueDictionary

Properties

| Edit this page View Source

ItemKey

The string key identifying the item in the dictionary.

Declaration
public string ItemKey { get; }
Property Value
Type Description
string
| Edit this page View Source

Seed

The seed URef associated with the dictionary.

Declaration
public URef Seed { get; }
Property Value
Type Description
URef
| Edit this page View Source

Value

The raw value bytes of the dictionary entry.

Declaration
public byte[] Value { get; }
Property Value
Type Description
byte[]

Methods

| Edit this page View Source

Parse(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.

  • Edit this page
  • View Source
In this article
Back to top Maintained by MAKE Technology LLC