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