Click or drag to resize
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.Contract
Assembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
Syntax
public bool Managed { get; set; }

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