LinearRetry Constructors

Definition

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
TimeSpan

A TimeSpan specifying the back-off interval between retries.

maxAttempts
Int32

An integer specifying the maximum number of retry attempts.

Applies to