TaskDependencies.OnIds Method
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
OnIds(IEnumerable<String>) |
Gets a TaskDependencies representing dependency on a list of task ids. |
OnIds(String[]) |
Gets a TaskDependencies representing dependency on a list of task ids. |
OnIds(IEnumerable<String>)
- Source:
- TaskDependencies.cs
Gets a TaskDependencies representing dependency on a list of task ids.
public static Microsoft.Azure.Batch.TaskDependencies OnIds (System.Collections.Generic.IEnumerable<string> ids);
static member OnIds : seq<string> -> Microsoft.Azure.Batch.TaskDependencies
Public Shared Function OnIds (ids As IEnumerable(Of String)) As TaskDependencies
Parameters
- ids
- IEnumerable<String>
The tasks to depend on.
Returns
A TaskDependencies representing dependency on the specified tasks.
Applies to
OnIds(String[])
- Source:
- TaskDependencies.cs
Gets a TaskDependencies representing dependency on a list of task ids.
public static Microsoft.Azure.Batch.TaskDependencies OnIds (params string[] ids);
static member OnIds : string[] -> Microsoft.Azure.Batch.TaskDependencies
Public Shared Function OnIds (ParamArray ids As String()) As TaskDependencies
Parameters
- ids
- String[]
The tasks to depend on.
Returns
A TaskDependencies representing dependency on the specified tasks.