次の方法で共有


TaskExecutionInformation コンストラクター

定義

オーバーロード

TaskExecutionInformation()

TaskExecutionInformation クラスの新しいインスタンスを初期化します。

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

TaskExecutionInformation クラスの新しいインスタンスを初期化します。

TaskExecutionInformation()

ソース:
TaskExecutionInformation.cs

TaskExecutionInformation クラスの新しいインスタンスを初期化します。

public TaskExecutionInformation ();
Public Sub New ()

適用対象

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

ソース:
TaskExecutionInformation.cs

TaskExecutionInformation クラスの新しいインスタンスを初期化します。

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)

パラメーター

retryCount
Int32

Batch サービスによってタスクが再試行された回数。

requeueCount
Int32

ユーザー要求の結果として Batch サービスによってタスクが再キューされた回数。

startTime
Nullable<DateTime>

タスクの実行を開始した時刻。

endTime
Nullable<DateTime>

タスクが完了した時刻。

exitCode
Nullable<Int32>

タスク コマンド ラインで指定されたプログラムの終了コード。

containerInfo
TaskContainerExecutionInformation

タスクが実行されているコンテナーに関する情報。

failureInfo
TaskFailureInformation

タスクの失敗を説明する情報 (存在する場合)。

lastRetryTime
Nullable<DateTime>

タスクの再試行が実行を開始した最新の時刻。

lastRequeueTime
Nullable<DateTime>

ユーザー要求の結果として Batch サービスによってタスクが再キューされた最新の時刻。

result
Nullable<TaskExecutionResult>

タスク実行の結果。

適用対象