Class AbortNetworkUpgradeExtensions
Extension methods for aborting a scheduled network upgrade.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class AbortNetworkUpgradeExtensions
Methods
| Edit this page View SourceAbortNetworkUpgradeAsync(ConsensusClient, AbortNetworkUpgradeParams, Action<IConsensusContext>?)
Aborts any scheduled network upgrade operation.
Declaration
public static Task<TransactionReceipt> AbortNetworkUpgradeAsync(this ConsensusClient client, AbortNetworkUpgradeParams abortParams, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client orchestrating the administrative command. |
| AbortNetworkUpgradeParams | abortParams | The parameters for aborting the scheduled network upgrade. |
| 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 TransactionId Receipt indicating success. |
Remarks
This operation must be submitted by a privileged account having access rights to perform this operation.
Examples
// Cancel a currently-prepared or scheduled upgrade. No-op if there
// is no pending upgrade. The superuser key must sign.
var receipt = await client.AbortNetworkUpgradeAsync(new AbortNetworkUpgradeParams());
Console.WriteLine($"Abort 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. |
| 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. |