 | JobInfoPrivateModelManaged Property |
Gets or sets a value indicating whether the job is managed.
Namespace: DoubleTake.Web.ModelsAssembly: DoubleTake.Management.Web.Client (in DoubleTake.Management.Web.Client.dll) Version: 8.1.0.599 (8.1.0.599)
Syntaxpublic bool Managed { get; set; }
Public Property Managed As Boolean
Get
Set
public:
property bool Managed {
bool get ();
void set (bool value);
}
member Managed : bool with 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