AddTaskCollectionResultHandler.DefaultAddTaskCollectionResultHandler Method

Definition

The default result handler for the AddTaskCollectionResultHandler behavior. This handler treats success and 'TaskExists' errors as successful, retries server errors (HTTP 5xx), and throws AddTaskCollectionTerminatedException on client error (HTTP 4xx).

public static Microsoft.Azure.Batch.AddTaskResultStatus DefaultAddTaskCollectionResultHandler (Microsoft.Azure.Batch.AddTaskResult addTaskResult, System.Threading.CancellationToken cancellationToken);
static member DefaultAddTaskCollectionResultHandler : Microsoft.Azure.Batch.AddTaskResult * System.Threading.CancellationToken -> Microsoft.Azure.Batch.AddTaskResultStatus
Public Shared Function DefaultAddTaskCollectionResultHandler (addTaskResult As AddTaskResult, cancellationToken As CancellationToken) As AddTaskResultStatus

Parameters

addTaskResult
AddTaskResult

The result of a single Add Task operation.

cancellationToken
CancellationToken

The cancellation token associated with the AddTaskCollection operation.

Returns

An AddTaskResultStatus which indicates whether the addTaskResult is classified as a success or as requiring a retry.

Applies to