Class SystemRestoreFileExtensions
Extension methods for administratively restoring a deleted file.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class SystemRestoreFileExtensions
Methods
| Edit this page View SourceSystemRestoreFileAsync(ConsensusClient, SystemRestoreFileParams, Action<IConsensusContext>?)
Undeletes a file from the network via Administrative Restore
Declaration
public static Task<TransactionReceipt> SystemRestoreFileAsync(this ConsensusClient client, SystemRestoreFileParams restoreParams, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client orchestrating the administrative command. |
| SystemRestoreFileParams | restoreParams | The parameters for the system restore operation, including the file address to restore. |
| 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 success of the file restoration. |
Examples
// Undo a previous SystemDeleteFileAsync within the grace window.
var receipt = await client.SystemRestoreFileAsync(new SystemRestoreFileParams
{
File = file
});
Console.WriteLine($"System restore 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 restore request as invalid or had missing data. |