Show / Hide Table of Contents

Class ResumeTokenParams

Token parameters for resuming an account's ability to send or receive the specified token.

Inheritance
object
TransactionParams
TransactionParams<TransactionReceipt>
ResumeTokenParams
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public sealed class ResumeTokenParams : TransactionParams<TransactionReceipt>
Examples

Un-freeze a previously-suspended holder:

// Reverse a previous SuspendTokenAsync for the given holder.
var receipt = await client.ResumeTokenAsync(token, holder);
Console.WriteLine($"Resume status: {receipt.Status}");

Properties

| Edit this page View Source

CancellationToken

Optional cancellation token to interrupt the token resumption submission process.

Declaration
public CancellationToken? CancellationToken { get; set; }
Property Value
Type Description
CancellationToken?
| Edit this page View Source

Holder

The identifier of the account holding the token that may resume transactions.

Declaration
public EntityId Holder { get; set; }
Property Value
Type Description
EntityId
| Edit this page View Source

Signatory

Additional private key, keys or signing callback method required to authorize the resume. Typically matches the Endorsement assigned to the Suspend key for the token if it is not already set as the payer for the transaction.

Declaration
public Signatory? Signatory { get; set; }
Property Value
Type Description
Signatory
Remarks

Keys/callbacks added here will be combined with those already identified in the client object's context when signing this transaction to change the state of this account.

| Edit this page View Source

Token

The identifier of the token or NFT class to resume.

Declaration
public EntityId Token { get; set; }
Property Value
Type Description
EntityId
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph