RetryPolicy.IsRetryableException(Exception) 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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET