Share via


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

  • firstFastRetry
    Type: System.Boolean

    true 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