Share via


RetryPolicy Constructor (ITransientErrorDetectionStrategy, Int32)

 

Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and default fixed time interval between retries.

Namespace:   Microsoft.WindowsAzure.Common.TransientFaultHandling
Assembly:  Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)

Syntax

public RetryPolicy(
    ITransientErrorDetectionStrategy errorDetectionStrategy,
    int retryCount
)
public:
RetryPolicy(
    ITransientErrorDetectionStrategy^ errorDetectionStrategy,
    int retryCount
)
new : 
        errorDetectionStrategy:ITransientErrorDetectionStrategy *
        retryCount:int -> RetryPolicy
Public Sub New (
    errorDetectionStrategy As ITransientErrorDetectionStrategy,
    retryCount As Integer
)

Parameters

  • retryCount
    Type: System.Int32

    The number of retry attempts.

See Also

RetryPolicy Overload
RetryPolicy Class
Microsoft.WindowsAzure.Common.TransientFaultHandling Namespace

Return to top