共用方式為


TaskDependencies Constructors

Definition

Overloads

TaskDependencies()

Initializes a new instance of the TaskDependencies class.

TaskDependencies(IList<String>, IList<TaskIdRange>)

Initializes a new instance of the TaskDependencies class.

TaskDependencies()

Source:
TaskDependencies.cs

Initializes a new instance of the TaskDependencies class.

public TaskDependencies ();
Public Sub New ()

Applies to

TaskDependencies(IList<String>, IList<TaskIdRange>)

Source:
TaskDependencies.cs

Initializes a new instance of the TaskDependencies class.

public TaskDependencies (System.Collections.Generic.IList<string> taskIds = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.TaskIdRange> taskIdRanges = default);
new Microsoft.Azure.Batch.Protocol.Models.TaskDependencies : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.TaskIdRange> -> Microsoft.Azure.Batch.Protocol.Models.TaskDependencies
Public Sub New (Optional taskIds As IList(Of String) = Nothing, Optional taskIdRanges As IList(Of TaskIdRange) = Nothing)

Parameters

taskIds
IList<String>

The list of Task IDs that this Task depends on. All Tasks in this list must complete successfully before the dependent Task can be scheduled.

taskIdRanges
IList<TaskIdRange>

The list of Task ID ranges that this Task depends on. All Tasks in all ranges must complete successfully before the dependent Task can be scheduled.

Applies to