Struct Nonce
An arbitrary
Namespace: Libplanet
Assembly: Libplanet.dll
Syntax
public struct Nonce
Constructors
| Improve this Doc View SourceNonce(ImmutableArray<Byte>)
Converts an immutable
This constructor is inverse of ByteArray property.
Declaration
public Nonce(ImmutableArray<byte> nonce)
Parameters
Type | Name | Description |
---|---|---|
ImmutableArray<Byte> | nonce | An immutable |
See Also
| Improve this Doc View SourceNonce(Byte[])
Converts a
This constructor is an inverse function of ToByteArray() method.
Declaration
public Nonce(byte[] nonce)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | nonce | A |
See Also
Properties
| Improve this Doc View SourceByteArray
A bare immutable
Declaration
public readonly ImmutableArray<byte> ByteArray { get; }
Property Value
Type | Description |
---|---|
ImmutableArray<Byte> |
Remarks
It is immutable. For a mutable array, use ToByteArray() method instead.
See Also
Methods
| Improve this Doc View SourceToByteArray()
Gets a bare mutable
Declaration
public byte[] ToByteArray()
Returns
Type | Description |
---|---|
Byte[] | A new mutable |
See Also
| Improve this Doc View SourceToString()
Gets a hexadecimal representation of a Nonce.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A hexadecimal representation of a Nonce. |
Operators
| Improve this Doc View SourceEquality(Nonce, Nonce)
Declaration
public static bool operator ==(Nonce left, Nonce right)
Parameters
Type | Name | Description |
---|---|---|
Nonce | left | |
Nonce | right |
Returns
Type | Description |
---|---|
Boolean |
Inequality(Nonce, Nonce)
Declaration
public static bool operator !=(Nonce left, Nonce right)
Parameters
Type | Name | Description |
---|---|---|
Nonce | left | |
Nonce | right |
Returns
Type | Description |
---|---|
Boolean |