|
JobStatusHighLevelState Property |
This value represents high level job states. High level states typically map to phases of the job's overall lifecycle, like mirroring or failing over.
Jobs will pass through various high level states during their lifetime, and the types of high level states are usually shared between jobs, regardless of job type.
Namespace: DoubleTake.Jobs.ContractAssembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
Syntaxpublic HighLevelState HighLevelState { get; set; }
Public Property HighLevelState As HighLevelState
Get
Set
public:
property HighLevelState HighLevelState {
HighLevelState get ();
void set (HighLevelState value);
}
function get_HighLevelState();
function set_HighLevelState(value);
Property Value
Type:
HighLevelState
The high level state of this job.
Remarks
High level states of a job typically map to phases of the job's overall lifecycle.
Examples include "mirroring", "replicating", "failing over", etc. Jobs will pass
through various high level states during their lifetime, and the types of high level
states are usually shared between jobs, regardless of the job's purpose.
See Also