AddTaskCollectionResultHandler.DefaultAddTaskCollectionResultHandler 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.
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.