RepairTaskResult Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the result of the repair task.
This type supports the Service Fabric platform; it is not meant to be used directly from your code.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum RepairTaskResult
[<System.Flags>]
type RepairTaskResult =
Public Enum RepairTaskResult
- Inheritance
-
RepairTaskResult
- Attributes
Fields
Name | Value | Description |
---|---|---|
Invalid | 0 | Indicates that the repair task result is invalid. |
Succeeded | 1 | Indicates that the repair task completed execution successfully. |
Cancelled | 2 | Indicates that the repair task was cancelled prior to execution. |
Interrupted | 4 | Indicates that execution of the repair task was interrupted by a cancellation request after some work had already been performed. |
Failed | 8 | Indicates that there was a failure during execution of the repair task. Some work may have been performed. |
Pending | 16 | Indicates that the repair task result is not yet available, because the repair task has not finished executing. |
Applies to
Azure SDK for .NET