|
JobInfoManaged Property |
This value is true if the job is managed; otherwise, it is false. This property is intended to be used by transitional implementations of jobs that want to allow their jobs to be visible to the job manager,
but will be responsible for creating those jobs and managing their lifetime.
Namespace: DoubleTake.Jobs.ContractAssembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
Syntaxpublic bool Managed { get; set; }
Public Property Managed As Boolean
Get
Set
public:
property bool Managed {
bool get ();
void set (bool value);
}
function get_Managed();
function set_Managed(value);
Property Value
Type:
Boolean if this job is managed; otherwise,
.
Remarks
This property is intended to be used by transitional implementations of jobs that
want to allow their jobs to be visible to the job manager, but will be responsible
for creating those jobs and managing their lifetime. Typically, jobs who have this
property set to will be added to the job manager using
the [M:Add] method.
See Also