TaskExecutionInformation コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
TaskExecutionInformation() |
TaskExecutionInformation クラスの新しいインスタンスを初期化します。 |
TaskExecutionInformation(Int32, Int32, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<DateTime>, Nullable<DateTime>, Nullable<TaskExecutionResult>) |
TaskExecutionInformation クラスの新しいインスタンスを初期化します。 |
TaskExecutionInformation()
TaskExecutionInformation クラスの新しいインスタンスを初期化します。
public TaskExecutionInformation();
Public Sub New ()
適用対象
TaskExecutionInformation(Int32, Int32, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<DateTime>, Nullable<DateTime>, Nullable<TaskExecutionResult>)
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 サービスによってタスクが再キューされた回数。
- containerInfo
- TaskContainerExecutionInformation
タスクが実行されているコンテナーに関する情報。
- failureInfo
- TaskFailureInformation
タスクの失敗を説明する情報 (存在する場合)。
- result
- Nullable<TaskExecutionResult>
タスク実行の結果。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET