Click or drag to resize
IntuitRetryPolicy Constructor (Int32, TimeSpan, TimeSpan, TimeSpan)
Initializes a new instance of the IntuitRetryPolicy class.

Namespace:  Intuit.Ipp.Retry
Assembly:  Intuit.Ipp.Retry (in Intuit.Ipp.Retry.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
C#
public IntuitRetryPolicy(
	int retryCount,
	TimeSpan minBackoff,
	TimeSpan maxBackoff,
	TimeSpan deltaBackoff
)

Parameters

retryCount
Type: SystemInt32
The maximum number of retry attempts.
minBackoff
Type: SystemTimeSpan
The minimum back-off time
maxBackoff
Type: SystemTimeSpan
The maximum back-off time.
deltaBackoff
Type: SystemTimeSpan
The value which will be used to calculate a random delta in the exponential delay between retries.
See Also