TestCommandProgressState 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.
This enum indicates the state of a test command.
public enum TestCommandProgressState
type TestCommandProgressState =
Public Enum TestCommandProgressState
- Inheritance
-
TestCommandProgressState
Fields
Name | Value | Description |
---|---|---|
Invalid | 0 | The test command state is invalid. |
Running | 1 | The test command is in progress. |
RollingBack | 2 | The test command is rolling back internal system state because it encountered a fatal error or was cancelled by the user. "RollingBack"
does not refer to user state. For example, if CancelTestCommandAsync() is called on a command of type TestCommandType.PartitionDataLoss,
a state of "RollingBack" does not mean service data is being restored (assuming the command has progressed far enough to cause data loss). |
Completed | 3 | The test command has completed successfully and is no longer running. |
Faulted | 4 | The test command has failed and is no longer running |
Cancelled | 5 | The test command was cancelled by the user using CancelTestCommandAsync() |
ForceCancelled | 6 | The test command was cancelled by the user using CancelTestCommandAsync(), with the force parameter set to true |
Applies to
Azure SDK for .NET