FixedInterval Constructor (String, Int32, TimeSpan)
Initializes a new instance of the FixedInterval class with the specified number of retry attempts, time interval, and retry strategy.
Namespace: Microsoft.WindowsAzure.Common.TransientFaultHandling
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public FixedInterval(
string name,
int retryCount,
TimeSpan retryInterval
)
public:
FixedInterval(
String^ name,
int retryCount,
TimeSpan retryInterval
)
new :
name:string *
retryCount:int *
retryInterval:TimeSpan -> FixedInterval
Public Sub New (
name As String,
retryCount As Integer,
retryInterval As TimeSpan
)
Parameters
name
Type: System.StringThe retry strategy name.
retryCount
Type: System.Int32The number of retry attempts.
retryInterval
Type: System.TimeSpanThe time interval between retries.
See Also
FixedInterval Overload
FixedInterval Class
Microsoft.WindowsAzure.Common.TransientFaultHandling Namespace
Return to top