Class ResumeTokenExtensions
Extension methods for resuming a suspended account's ability to transact a token.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class ResumeTokenExtensions
Methods
| Edit this page View SourceResumeTokenAsync(ConsensusClient, EntityId, EntityId, Action<IConsensusContext>?)
Resumes the associated holding account's ability to send or receive the specified token.
Declaration
public static Task<TransactionReceipt> ResumeTokenAsync(this ConsensusClient client, EntityId token, EntityId holder, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client orchestrating the resume/unfreeze. |
| EntityId | token | The identifier of the token to resume/unfreeze. |
| EntityId | holder | The account holding the token that will be resumed/unfrozen. |
| Action<IConsensusContext> | configure | Optional callback method providing an opportunity to modify the execution configuration for just this method call. It is executed prior to submitting the request to the network. |
Returns
| Type | Description |
|---|---|
| Task<TransactionReceipt> | A transaction receipt indicating a successful operation. |
Examples
// Reverse a previous SuspendTokenAsync for the given holder.
var receipt = await client.ResumeTokenAsync(token, holder);
Console.WriteLine($"Resume status: {receipt.Status}");
Exceptions
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | If required arguments are missing. |
| InvalidOperationException | If required context configuration is missing. |
| PrecheckException | If the gateway node rejected the request upon submission, for example, if the token is already deleted. |
| ConsensusException | If the network was unable to come to consensus before the duration of the transaction expired. |
| TransactionException | If the network rejected the request as invalid or had missing data. |
ResumeTokenAsync(ConsensusClient, ResumeTokenParams, Action<IConsensusContext>?)
Resumes the associated holding account's ability to send or receive the specified token.
Declaration
public static Task<TransactionReceipt> ResumeTokenAsync(this ConsensusClient client, ResumeTokenParams resumeParams, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client orchestrating the resume/unfreeze. |
| ResumeTokenParams | resumeParams | The details identifying the token and account to resume/unfreeze. |
| Action<IConsensusContext> | configure | Optional callback method providing an opportunity to modify the execution configuration for just this method call. It is executed prior to submitting the request to the network. |
Returns
| Type | Description |
|---|---|
| Task<TransactionReceipt> | A transaction receipt indicating a successful operation. |
Examples
// Reverse a previous SuspendTokenAsync for the given holder.
var receipt = await client.ResumeTokenAsync(token, holder);
Console.WriteLine($"Resume status: {receipt.Status}");
Exceptions
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | If required arguments are missing. |
| InvalidOperationException | If required context configuration is missing. |
| PrecheckException | If the gateway node rejected the request upon submission, for example, if the token is already deleted. |
| ConsensusException | If the network was unable to come to consensus before the duration of the transaction expired. |
| TransactionException | If the network rejected the request as invalid or had missing data. |