Incremental Constructor (String, Int32, TimeSpan, TimeSpan)
Initializes a new instance of the Incremental class with the specified name and retry settings.
Namespace: Microsoft.WindowsAzure.Common.TransientFaultHandling
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public Incremental(
string name,
int retryCount,
TimeSpan initialInterval,
TimeSpan increment
)
public:
Incremental(
String^ name,
int retryCount,
TimeSpan initialInterval,
TimeSpan increment
)
new :
name:string *
retryCount:int *
initialInterval:TimeSpan *
increment:TimeSpan -> Incremental
Public Sub New (
name As String,
retryCount As Integer,
initialInterval As TimeSpan,
increment As TimeSpan
)
Parameters
name
Type: System.StringThe retry strategy name.
retryCount
Type: System.Int32The number of retry attempts.
initialInterval
Type: System.TimeSpanThe initial interval that will apply for the first retry.
increment
Type: System.TimeSpanThe incremental time value that will be used to calculate the progressive delay between retries.
See Also
Incremental Overload
Incremental Class
Microsoft.WindowsAzure.Common.TransientFaultHandling Namespace
Return to top