Share via


RepairTaskResult Enum

Definition

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

Cancelled 2

Indicates that the repair task was cancelled prior to execution.

Failed 8

Indicates that there was a failure during execution of the repair task. Some work may have been performed.

Interrupted 4

Indicates that execution of the repair task was interrupted by a cancellation request after some work had already been performed.

Invalid 0

Indicates that the repair task result is invalid.

Pending 16

Indicates that the repair task result is not yet available, because the repair task has not finished executing.

Succeeded 1

Indicates that the repair task completed execution successfully.

Applies to