Table of Contents

Class RecoveryResult

Namespace
DotCompute.Core.Models
Assembly
DotCompute.Core.dll

Result of an error recovery attempt.

public class RecoveryResult
Inheritance
RecoveryResult
Inherited Members

Properties

DataLossOccurred

Gets or sets any data loss that occurred during recovery.

public bool DataLossOccurred { get; set; }

Property Value

bool

ErrorMessage

Gets or sets the error message if recovery failed.

public string? ErrorMessage { get; set; }

Property Value

string

Method

Gets or sets the recovery method used.

public RecoveryMethod Method { get; set; }

Property Value

RecoveryMethod

RecoveryAction

Gets or sets the description of the recovery action taken.

public string RecoveryAction { get; set; }

Property Value

string

RecoveryTime

Gets or sets the time taken for recovery.

public TimeSpan RecoveryTime { get; set; }

Property Value

TimeSpan

Success

Gets or sets whether recovery was successful.

public bool Success { get; set; }

Property Value

bool

Warning

Gets or sets any warnings from the recovery process.

public string? Warning { get; set; }

Property Value

string