Show / Hide Table of Contents

Class AbortNetworkUpgradeExtensions

Extension methods for aborting a scheduled network upgrade.

Inheritance
object
AbortNetworkUpgradeExtensions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class AbortNetworkUpgradeExtensions

Methods

| Edit this page View Source

AbortNetworkUpgradeAsync(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.

  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph