JobOperations.GetTask 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.
Gets the specified CloudTask.
public Microsoft.Azure.Batch.CloudTask GetTask (string jobId, string taskId, Microsoft.Azure.Batch.DetailLevel detailLevel = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.GetTask : string * string * Microsoft.Azure.Batch.DetailLevel * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.CloudTask
Public Function GetTask (jobId As String, taskId As String, Optional detailLevel As DetailLevel = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As CloudTask
Parameters
- jobId
- String
The id of the job from which to get the task.
- taskId
- String
The id of the task to get.
- detailLevel
- DetailLevel
A DetailLevel used for controlling which properties are retrieved from the service.
- additionalBehaviors
- IEnumerable<BatchClientBehavior>
A collection of BatchClientBehavior instances that are applied to the Batch service request after the CustomBehaviors and detailLevel
.
Returns
A CloudTask containing information about the specified Azure Batch task.
Remarks
This is a blocking operation. For a non-blocking equivalent, see GetTaskAsync(String, String, DetailLevel, IEnumerable<BatchClientBehavior>, CancellationToken).