TestCommandProgressState Enum

Definition

This enum indicates the state of a test command.

public enum TestCommandProgressState
type TestCommandProgressState = 
Public Enum TestCommandProgressState
Inheritance
TestCommandProgressState

Fields

Cancelled 5

The test command was cancelled by the user using CancelTestCommandAsync()

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

ForceCancelled 6

The test command was cancelled by the user using CancelTestCommandAsync(), with the force parameter set to true

Invalid 0

The test command state is invalid.

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).
It means the system is rolling back/cleaning up internal system state associated with the command.

Running 1

The test command is in progress.

Applies to