Class RawPayload
- Namespace
- Concordium.Sdk.Transactions
- Assembly
- Concordium.Sdk.dll
Represents the raw payload of an account transaction.
Used mostly for debugging, the only place where this will be encountered is when querying transactions from chain that have not been implemented for this SDK yet, and thus can not be deserialized.
public sealed record RawPayload : AccountTransactionPayload, IEquatable<AccountTransactionPayload>, IEquatable<RawPayload>
- Inheritance
-
RawPayload
- Implements
- Inherited Members
Constructors
RawPayload(byte[])
Represents the raw payload of an account transaction.
Used mostly for debugging, the only place where this will be encountered is when querying transactions from chain that have not been implemented for this SDK yet, and thus can not be deserialized.
public RawPayload(byte[] Bytes)
Parameters
Bytes
byte[]The raw bytes of the payload.
Properties
Bytes
The raw bytes of the payload.
public byte[] Bytes { get; init; }
Property Value
- byte[]
Methods
ToBytes()
Get the array of bytes representing this payload.
public override byte[] ToBytes()
Returns
- byte[]