CloudJob.GetTask Method

Definition

Gets the specified CloudTask.

public Microsoft.Azure.Batch.CloudTask GetTask (string taskId, Microsoft.Azure.Batch.DetailLevel detailLevel = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.GetTask : string * Microsoft.Azure.Batch.DetailLevel * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.CloudTask
Public Function GetTask (taskId As String, Optional detailLevel As DetailLevel = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As CloudTask

Parameters

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, DetailLevel, IEnumerable<BatchClientBehavior>, CancellationToken).

Applies to