Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Initializes a new instance of the LinearRetry class using the specified delta and maximum number of retries.

Namespace:   Microsoft.WindowsAzure.Storage.RetryPolicies
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public LinearRetry(
	TimeSpan deltaBackoff,
	int maxAttempts
)
 
public:
LinearRetry(
	TimeSpan deltaBackoff,
	int maxAttempts
)
 
new : 
        deltaBackoff:TimeSpan *
        maxAttempts:int -> LinearRetry
 
Public Sub New (
	deltaBackoff As TimeSpan,
	maxAttempts As Integer
)

Parameters

deltaBackoff
Type: System.TimeSpanSystem::TimeSpanSystem.TimeSpanSystem.TimeSpan

A TimeSpan specifying the back-off interval between retries.

maxAttempts
Type: System.Int32System::Int32System.Int32System.Int32

An integer specifying the maximum number of retry attempts.

Return to top