Delen via


StartTask Constructors

Definitie

Overloads

StartTask()

Initialiseert een nieuw exemplaar van de klasse StartTask.

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

Initialiseert een nieuw exemplaar van de klasse StartTask.

StartTask()

Initialiseert een nieuw exemplaar van de klasse StartTask.

public StartTask ();
Public Sub New ()

Van toepassing op

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

Initialiseert een nieuw exemplaar van de klasse 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)

Parameters

commandLine
String

De opdrachtregel van de starttaak.

resourceFiles
IList<ResourceFile>

Een lijst met bestanden die de Batch-service naar het rekenknooppunt downloadt voordat de opdrachtregel wordt uitgevoerd.

environmentSettings
IList<EnvironmentSetting>

Een lijst met omgevingsvariabele-instellingen voor de starttaak.

userIdentity
UserIdentity

De gebruikersidentiteit waaronder de begintaak wordt uitgevoerd.

maxTaskRetryCount
Nullable<Int32>

Het maximum aantal keren dat de taak opnieuw kan worden uitgevoerd.

waitForSuccess
Nullable<Boolean>

Of de Batch-service moet wachten tot de begintaak is voltooid (dat wil gezegd, afsluiten met afsluitcode 0) voordat taken op het rekenknooppunt worden gepland.

containerSettings
TaskContainerSettings

De instellingen voor de container waaronder de begintaak wordt uitgevoerd.

Van toepassing op