enum LongOperationState
Possible states that a long operation may be in.
Values
| Name | Value | Description |
|---|---|---|
NotStarted |
0 |
Operation has been created, but is not yet running. |
Running |
1 |
Operation is currently queued for execution or being executed. |
Failed |
2 |
Operation has finished running because it encountered an error. |
Aborted |
3 |
Operation has finished running because it was aborted by the user. |
Finished |
4 |
Operation has successfully finished running. |