ContainerParentJob Constructors

Definition

Overloads

ContainerParentJob(String)

Create a container parent job with the specified command string.

ContainerParentJob(String, String)

Create a container parent job with the specified command string and name.

ContainerParentJob(String, String, Guid)

Create a container parent job with the specified command string.

ContainerParentJob(String, String, JobIdentifier)

Create a container parent job with the specified command string.

ContainerParentJob(String, String, String)

Create a container parent job with the specified command, name, job type strings.

ContainerParentJob(String, String, Guid, String)

Create a container parent job with the specified command string.

ContainerParentJob(String, String, JobIdentifier, String)

Create a container parent job with the specified command string.

ContainerParentJob(String)

Create a container parent job with the specified command string.

public:
 ContainerParentJob(System::String ^ command);
public:
 ContainerParentJob(Platform::String ^ command);
 ContainerParentJob(std::wstring const & command);
public ContainerParentJob (string command);
new System.Management.Automation.ContainerParentJob : string -> System.Management.Automation.ContainerParentJob
Public Sub New (command As String)

Parameters

command
String

Command string.

Applies to

ContainerParentJob(String, String)

Create a container parent job with the specified command string and name.

public:
 ContainerParentJob(System::String ^ command, System::String ^ name);
public:
 ContainerParentJob(Platform::String ^ command, Platform::String ^ name);
 ContainerParentJob(std::wstring const & command, std::wstring const & name);
public ContainerParentJob (string command, string name);
new System.Management.Automation.ContainerParentJob : string * string -> System.Management.Automation.ContainerParentJob
Public Sub New (command As String, name As String)

Parameters

command
String

Command string.

name
String

Friendly name for display.

Applies to

ContainerParentJob(String, String, Guid)

Create a container parent job with the specified command string.

public:
 ContainerParentJob(System::String ^ command, System::String ^ name, Guid instanceId);
public ContainerParentJob (string command, string name, Guid instanceId);
new System.Management.Automation.ContainerParentJob : string * string * Guid -> System.Management.Automation.ContainerParentJob
Public Sub New (command As String, name As String, instanceId As Guid)

Parameters

command
String

Command string.

name
String

Friendly name for the job.

instanceId
Guid

Instance ID to allow job identification across sessions.

Applies to

ContainerParentJob(String, String, JobIdentifier)

Create a container parent job with the specified command string.

public:
 ContainerParentJob(System::String ^ command, System::String ^ name, System::Management::Automation::JobIdentifier ^ jobId);
public ContainerParentJob (string command, string name, System.Management.Automation.JobIdentifier jobId);
new System.Management.Automation.ContainerParentJob : string * string * System.Management.Automation.JobIdentifier -> System.Management.Automation.ContainerParentJob
Public Sub New (command As String, name As String, jobId As JobIdentifier)

Parameters

command
String

Command string.

name
String

Friendly name for the job.

jobId
JobIdentifier

JobIdentifier token that allows reuse of an Id and Instance Id.

Applies to

ContainerParentJob(String, String, String)

Create a container parent job with the specified command, name, job type strings.

public:
 ContainerParentJob(System::String ^ command, System::String ^ name, System::String ^ jobType);
public:
 ContainerParentJob(Platform::String ^ command, Platform::String ^ name, Platform::String ^ jobType);
 ContainerParentJob(std::wstring const & command, std::wstring const & name, std::wstring const & jobType);
public ContainerParentJob (string command, string name, string jobType);
new System.Management.Automation.ContainerParentJob : string * string * string -> System.Management.Automation.ContainerParentJob
Public Sub New (command As String, name As String, jobType As String)

Parameters

command
String

Command string.

name
String

Friendly name for the job.

jobType
String

Job type name.

Applies to

ContainerParentJob(String, String, Guid, String)

Create a container parent job with the specified command string.

public:
 ContainerParentJob(System::String ^ command, System::String ^ name, Guid instanceId, System::String ^ jobType);
public ContainerParentJob (string command, string name, Guid instanceId, string jobType);
new System.Management.Automation.ContainerParentJob : string * string * Guid * string -> System.Management.Automation.ContainerParentJob
Public Sub New (command As String, name As String, instanceId As Guid, jobType As String)

Parameters

command
String

Command string.

name
String

Friendly name for the job.

instanceId
Guid

Instance ID to allow job identification across sessions.

jobType
String

Job type name.

Applies to

ContainerParentJob(String, String, JobIdentifier, String)

Create a container parent job with the specified command string.

public:
 ContainerParentJob(System::String ^ command, System::String ^ name, System::Management::Automation::JobIdentifier ^ jobId, System::String ^ jobType);
public ContainerParentJob (string command, string name, System.Management.Automation.JobIdentifier jobId, string jobType);
new System.Management.Automation.ContainerParentJob : string * string * System.Management.Automation.JobIdentifier * string -> System.Management.Automation.ContainerParentJob
Public Sub New (command As String, name As String, jobId As JobIdentifier, jobType As String)

Parameters

command
String

Command string.

name
String

Friendly name for the job.

jobId
JobIdentifier

JobIdentifier token that allows reuse of an Id and Instance Id.

jobType
String

Job type name.

Applies to