RetryStrategy Constructor (String, Boolean)
Initializes a new instance of the RetryStrategy class.
Namespace: Microsoft.WindowsAzure.Common.TransientFaultHandling
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
protected RetryStrategy(
string name,
bool firstFastRetry
)
protected:
RetryStrategy(
String^ name,
bool firstFastRetry
)
new :
name:string *
firstFastRetry:bool -> RetryStrategy
Protected Sub New (
name As String,
firstFastRetry As Boolean
)
Parameters
name
Type: System.StringThe name of the retry strategy.
firstFastRetry
Type: System.Booleantrue to immediately retry in the first attempt; otherwise, false. The subsequent retries will remain subject to the configured retry interval.
See Also
RetryStrategy Class
Microsoft.WindowsAzure.Common.TransientFaultHandling Namespace
Return to top