Share via


FixedIntervalRetryStrategy Constructors

Definition

Overloads

FixedIntervalRetryStrategy()
FixedIntervalRetryStrategy(Int32)
FixedIntervalRetryStrategy(Int32, TimeSpan)
FixedIntervalRetryStrategy(String, Int32, TimeSpan)
FixedIntervalRetryStrategy(String, Int32, TimeSpan, Boolean)

FixedIntervalRetryStrategy()

public FixedIntervalRetryStrategy ();
Public Sub New ()

Applies to

FixedIntervalRetryStrategy(Int32)

public FixedIntervalRetryStrategy (int retryCount);
new Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy : int -> Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy
Public Sub New (retryCount As Integer)

Parameters

retryCount
Int32

Applies to

FixedIntervalRetryStrategy(Int32, TimeSpan)

public FixedIntervalRetryStrategy (int retryCount, TimeSpan retryInterval);
new Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy : int * TimeSpan -> Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy
Public Sub New (retryCount As Integer, retryInterval As TimeSpan)

Parameters

retryCount
Int32
retryInterval
TimeSpan

Applies to

FixedIntervalRetryStrategy(String, Int32, TimeSpan)

public FixedIntervalRetryStrategy (string name, int retryCount, TimeSpan retryInterval);
new Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy : string * int * TimeSpan -> Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy
Public Sub New (name As String, retryCount As Integer, retryInterval As TimeSpan)

Parameters

name
String
retryCount
Int32
retryInterval
TimeSpan

Applies to

FixedIntervalRetryStrategy(String, Int32, TimeSpan, Boolean)

public FixedIntervalRetryStrategy (string name, int retryCount, TimeSpan retryInterval, bool firstFastRetry);
new Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy : string * int * TimeSpan * bool -> Microsoft.Rest.TransientFaultHandling.FixedIntervalRetryStrategy
Public Sub New (name As String, retryCount As Integer, retryInterval As TimeSpan, firstFastRetry As Boolean)

Parameters

name
String
retryCount
Int32
retryInterval
TimeSpan
firstFastRetry
Boolean

Applies to