ExponentialRetry Constructors
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.
Overloads
ExponentialRetry() |
Initializes a new instance of the ExponentialRetry class. |
ExponentialRetry(TimeSpan, Int32) |
Initializes a new instance of the ExponentialRetry class using the specified delta and maximum number of retries. |
ExponentialRetry()
Initializes a new instance of the ExponentialRetry class.
public ExponentialRetry ();
Public Sub New ()
Applies to
ExponentialRetry(TimeSpan, Int32)
Initializes a new instance of the ExponentialRetry class using the specified delta and maximum number of retries.
public ExponentialRetry (TimeSpan deltaBackoff, int maxAttempts);
new Microsoft.Azure.Storage.RetryPolicies.ExponentialRetry : TimeSpan * int -> Microsoft.Azure.Storage.RetryPolicies.ExponentialRetry
Public Sub New (deltaBackoff As TimeSpan, maxAttempts As Integer)
Parameters
- maxAttempts
- Int32
An integer specifying the maximum number of retry attempts.
Applies to
Azure SDK for .NET