Sdílet prostřednictvím


IRetryPolicy.ShouldRetryAsync(Exception, OperationContext) Method

Definition

Determines if the operation should be retried and how long to wait until the next retry.

public System.Threading.Tasks.Task<Microsoft.Azure.Batch.Common.RetryDecision> ShouldRetryAsync (Exception exception, Microsoft.Azure.Batch.Common.OperationContext operationContext);
abstract member ShouldRetryAsync : Exception * Microsoft.Azure.Batch.Common.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Batch.Common.RetryDecision>
Public Function ShouldRetryAsync (exception As Exception, operationContext As OperationContext) As Task(Of RetryDecision)

Parameters

exception
Exception

An Exception object that represents the last exception encountered.

operationContext
OperationContext

An OperationContext object for tracking the current operation.

Returns

A RetryDecision object which specifies if a retry should be performed.

Applies to