TaskDependencies Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Azure SDK for .NET