Freigeben über


IRetryPolicy.ShouldRetry Methode

Definition

Bestimmt, ob der Vorgang wiederholt werden sollte, und das Intervall bis zum nächsten Versuch.

public bool ShouldRetry (int currentRetryCount, int statusCode, Exception lastException, out TimeSpan retryInterval, Microsoft.Azure.Storage.OperationContext operationContext);
abstract member ShouldRetry : int * int * Exception * TimeSpan * Microsoft.Azure.Storage.OperationContext -> bool
Public Function ShouldRetry (currentRetryCount As Integer, statusCode As Integer, lastException As Exception, ByRef retryInterval As TimeSpan, operationContext As OperationContext) As Boolean

Parameter

currentRetryCount
Int32

Eine ganze Zahl, die die Anzahl der Wiederholungen für den angegebenen Vorgang angibt. Der Wert Null gibt an, dass dies der erste aufgetretene Fehler ist.

statusCode
Int32

Eine ganze Zahl, die den Statuscode für den letzten Vorgang enthält.

lastException
Exception

Ein Exception-Objekt, das die letzte ermittelte Ausnahme darstellt.

retryInterval
TimeSpan

Eine TimeSpan, die das Intervall bis zur nächsten Wiederholung angibt.

operationContext
OperationContext

Ein OperationContext-Objekt, das den Kontext für den aktuellen Vorgang darstellt.

Gibt zurück

true, wenn der Vorgang wiederholt werden sollte, ansonsten false.

Gilt für: