共用方式為


StartTask 建構函式

定義

多載

StartTask()

初始化 StartTask 類別的新實例。

StartTask(String, IList<ResourceFile>, IList<EnvironmentSetting>, UserIdentity, Nullable<Int32>, Nullable<Boolean>, TaskContainerSettings)

初始化 StartTask 類別的新實例。

StartTask()

初始化 StartTask 類別的新實例。

public StartTask ();
Public Sub New ()

適用於

StartTask(String, IList<ResourceFile>, IList<EnvironmentSetting>, UserIdentity, Nullable<Int32>, Nullable<Boolean>, TaskContainerSettings)

初始化 StartTask 類別的新實例。

public StartTask (string commandLine = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.ResourceFile> resourceFiles = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.EnvironmentSetting> environmentSettings = default, Microsoft.Azure.Management.Batch.Models.UserIdentity userIdentity = default, int? maxTaskRetryCount = default, bool? waitForSuccess = default, Microsoft.Azure.Management.Batch.Models.TaskContainerSettings containerSettings = default);
new Microsoft.Azure.Management.Batch.Models.StartTask : string * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.ResourceFile> * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.EnvironmentSetting> * Microsoft.Azure.Management.Batch.Models.UserIdentity * Nullable<int> * Nullable<bool> * Microsoft.Azure.Management.Batch.Models.TaskContainerSettings -> Microsoft.Azure.Management.Batch.Models.StartTask
Public Sub New (Optional commandLine As String = Nothing, Optional resourceFiles As IList(Of ResourceFile) = Nothing, Optional environmentSettings As IList(Of EnvironmentSetting) = Nothing, Optional userIdentity As UserIdentity = Nothing, Optional maxTaskRetryCount As Nullable(Of Integer) = Nothing, Optional waitForSuccess As Nullable(Of Boolean) = Nothing, Optional containerSettings As TaskContainerSettings = Nothing)

參數

commandLine
String

開始工作的命令列。

resourceFiles
IList<ResourceFile>

Batch 服務在執行命令列之前會下載到計算節點的檔案清單。

environmentSettings
IList<EnvironmentSetting>

開始工作的環境變數設定清單。

userIdentity
UserIdentity

開始工作執行所在的使用者身分識別。

maxTaskRetryCount
Nullable<Int32>

工作重試次數上限。

waitForSuccess
Nullable<Boolean>

Batch 服務是否應該等候啟動工作順利完成 (,在計算節點上排程任何工作之前,先結束代碼 0) 結束。

containerSettings
TaskContainerSettings

啟動工作執行所在容器的設定。

適用於