|
JobStatusLowLevelState Property |
This value is a low level job state. Low level states typically map to individual steps the job is performing at any given time, like attaching virtual disks or updating DNS.
Low level states provide detailed information about a job's current state or action and will vary between different job types.
Namespace: DoubleTake.Jobs.ContractAssembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
Syntaxpublic string LowLevelState { get; set; }
Public Property LowLevelState As String
Get
Set
public:
property String^ LowLevelState {
String^ get ();
void set (String^ value);
}
function get_LowLevelState();
function set_LowLevelState(value);
Property Value
Type:
String
The low level state of this job.
Remarks
Low level states of a job typically map to individual steps the job is performing at
any given time. Examples include "attaching virtual disks", "system state processing",
"updating DNS", etc. Low level state provides detailed information about what's going
on with the job right now, and will widely vary between jobs with different purpose.
See Also