TaskContainerExecutionInformation Constructors

Definition

Overloads

TaskContainerExecutionInformation()

Initializes a new instance of the TaskContainerExecutionInformation class.

TaskContainerExecutionInformation(String, String, String)

Initializes a new instance of the TaskContainerExecutionInformation class.

TaskContainerExecutionInformation()

Source:
TaskContainerExecutionInformation.cs

Initializes a new instance of the TaskContainerExecutionInformation class.

public TaskContainerExecutionInformation ();
Public Sub New ()

Applies to

TaskContainerExecutionInformation(String, String, String)

Source:
TaskContainerExecutionInformation.cs

Initializes a new instance of the TaskContainerExecutionInformation class.

public TaskContainerExecutionInformation (string containerId = default, string state = default, string error = default);
new Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation : string * string * string -> Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation
Public Sub New (Optional containerId As String = Nothing, Optional state As String = Nothing, Optional error As String = Nothing)

Parameters

containerId
String

The ID of the container.

state
String

The state of the container.

error
String

Detailed error information about the container.

Applies to