你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

FixedIntervalRetryStrategy 构造函数

定义

重载

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

FixedIntervalRetryStrategy()

public FixedIntervalRetryStrategy ();
Public Sub New ()

适用于

FixedIntervalRetryStrategy(Int32)

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

参数

retryCount
Int32

适用于

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)

参数

retryCount
Int32
retryInterval
TimeSpan

适用于

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)

参数

name
String
retryCount
Int32
retryInterval
TimeSpan

适用于

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)

参数

name
String
retryCount
Int32
retryInterval
TimeSpan
firstFastRetry
Boolean

适用于