RetryPolicy.IsRetryableException(Exception) Method

Definition

Determines whether it is permissible to retry after the specified exception.

protected abstract bool IsRetryableException (Exception lastException);
abstract member IsRetryableException : Exception -> bool
Protected MustOverride Function IsRetryableException (lastException As Exception) As Boolean

Parameters

lastException
Exception

The latest occurred exception.

Returns

If this method returns false, no retry occurs. Otherwise, the OnShouldRetry(TimeSpan, Int32, TimeSpan) method determines when to retry.

Applies to