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
ErrorMessage
Gets or sets the error message if recovery failed.
public string? ErrorMessage { get; set; }
Property Value
Method
Gets or sets the recovery method used.
public RecoveryMethod Method { get; set; }
Property Value
RecoveryAction
Gets or sets the description of the recovery action taken.
public string RecoveryAction { get; set; }
Property Value
RecoveryTime
Gets or sets the time taken for recovery.
public TimeSpan RecoveryTime { get; set; }
Property Value
Success
Gets or sets whether recovery was successful.
public bool Success { get; set; }
Property Value
Warning
Gets or sets any warnings from the recovery process.
public string? Warning { get; set; }