OperationStatus 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.
Represents the current state of an operation.
public enum class OperationStatus
public enum OperationStatus
type OperationStatus =
Public Enum OperationStatus
- Inheritance
-
OperationStatus
Fields
Name | Value | Description |
---|---|---|
Failed | 0 | The operation has failed. Value = 0. |
Canceled | 1 | The operation has been canceled. Value = 1. |
Retry | 2 | The operation is being retried. Value = 2. |
Suspended | 3 | The operation has been suspended. Value = 3. |
Succeeded | 4 | The operation has succeeded. Value = 4. |