|
ActionStatus Enumeration |
Represents the status of a job action.
Namespace: DoubleTake.Jobs.ContractAssembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
SyntaxPublic Enumeration ActionStatus
public enum class ActionStatus
DoubleTake.Jobs.Contract.ActionStatus = function();
DoubleTake.Jobs.Contract.ActionStatus.createEnum('DoubleTake.Jobs.Contract.ActionStatus', false);
Members
| Member name | Value | Description |
---|
| Pending | 0 |
The action has not yet started.
|
| Running | 1 |
The action is running.
|
| Completed | 2 |
The action has completed successfully.
|
| Cancelled | 3 |
The action was cancelled.
|
| Faulted | 4 |
The action encountered an error.
|
See Also