Freigeben über


TaskExecutionInformation Konstruktoren

Definition

Überlädt

TaskExecutionInformation()

Initialisiert eine neue instance der TaskExecutionInformation-Klasse.

TaskExecutionInformation(Int32, Int32, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<DateTime>, Nullable<DateTime>, Nullable<TaskExecutionResult>)

Initialisiert eine neue instance der TaskExecutionInformation-Klasse.

TaskExecutionInformation()

Quelle:
TaskExecutionInformation.cs

Initialisiert eine neue instance der TaskExecutionInformation-Klasse.

public TaskExecutionInformation ();
Public Sub New ()

Gilt für:

TaskExecutionInformation(Int32, Int32, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<DateTime>, Nullable<DateTime>, Nullable<TaskExecutionResult>)

Quelle:
TaskExecutionInformation.cs

Initialisiert eine neue instance der TaskExecutionInformation-Klasse.

public TaskExecutionInformation (int retryCount, int requeueCount, DateTime? startTime = default, DateTime? endTime = default, int? exitCode = default, Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation containerInfo = default, Microsoft.Azure.Batch.Protocol.Models.TaskFailureInformation failureInfo = default, DateTime? lastRetryTime = default, DateTime? lastRequeueTime = default, Microsoft.Azure.Batch.Protocol.Models.TaskExecutionResult? result = default);
new Microsoft.Azure.Batch.Protocol.Models.TaskExecutionInformation : int * int * Nullable<DateTime> * Nullable<DateTime> * Nullable<int> * Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation * Microsoft.Azure.Batch.Protocol.Models.TaskFailureInformation * Nullable<DateTime> * Nullable<DateTime> * Nullable<Microsoft.Azure.Batch.Protocol.Models.TaskExecutionResult> -> Microsoft.Azure.Batch.Protocol.Models.TaskExecutionInformation
Public Sub New (retryCount As Integer, requeueCount As Integer, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional exitCode As Nullable(Of Integer) = Nothing, Optional containerInfo As TaskContainerExecutionInformation = Nothing, Optional failureInfo As TaskFailureInformation = Nothing, Optional lastRetryTime As Nullable(Of DateTime) = Nothing, Optional lastRequeueTime As Nullable(Of DateTime) = Nothing, Optional result As Nullable(Of TaskExecutionResult) = Nothing)

Parameter

retryCount
Int32

Die Anzahl der Wiederholungen des Vorgangs durch den Batch-Dienst.

requeueCount
Int32

Gibt an, wie oft der Task vom Batch-Dienst als Ergebnis einer Benutzeranforderung zurückgefragt wurde.

startTime
Nullable<DateTime>

Der Zeitpunkt, zu dem der Task ausgeführt wurde.

endTime
Nullable<DateTime>

Der Zeitpunkt, zu dem die Aufgabe abgeschlossen wurde.

exitCode
Nullable<Int32>

Der Exitcode des Programms, der in der Task-Befehlszeile angegeben ist.

containerInfo
TaskContainerExecutionInformation

Informationen zum Container, unter dem der Task ausgeführt wird.

failureInfo
TaskFailureInformation

Informationen, die den Vorgangsfehler beschreiben, falls vorhanden.

lastRetryTime
Nullable<DateTime>

Der letzte Zeitpunkt, zu dem eine Wiederholung des Tasks ausgeführt wurde.

lastRequeueTime
Nullable<DateTime>

Der letzte Zeitpunkt, zu dem der Task durch den Batch-Dienst als Ergebnis einer Benutzeranforderung erneut in die Warteschlange gestellt wurde.

result
Nullable<TaskExecutionResult>

Das Ergebnis der Taskausführung.

Gilt für: