RetryStrategy Members
Include Protected Members
Include Inherited Members
Retired Content |
---|
This content and the technology described is outdated and is no longer being maintained. For more information, see Transient Fault Handling. |
The RetryStrategy type exposes the following members.
Constructors
Name | Description | |
---|---|---|
RetryStrategy |
Initializes a new instance of the RetryStrategy class.
|
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) |
|
GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) |
|
GetShouldRetry |
Returns the corresponding ShouldRetry delegate.
|
|
GetType |
Gets the Type of the current instance.
(Inherited from Object.) |
|
MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) |
|
ToString | (Inherited from Object.) |
Fields
Name | Description | |
---|---|---|
DefaultClientBackoff |
The default amount of time used when calculating a random delta in the exponential delay between retries.
|
|
DefaultClientRetryCount |
The default number of retry attempts.
|
|
DefaultExponential |
Returns a default policy that implements a random exponential retry interval configured with DefaultClientRetryCount, DefaultMinBackoff, DefaultMaxBackoff and DefaultClientBackoff parameters. The default retry policy treats all caught exceptions as transient errors.
|
|
DefaultFirstFastRetry |
The default flag indicating whether or not the very first retry attempt will be made immediately whereas the subsequent retries will remain subject to retry interval.
|
|
DefaultFixed |
Returns a default policy that implements a fixed retry interval configured with DefaultClientRetryCount and DefaultRetryInterval parameters. The default retry policy treats all caught exceptions as transient errors.
|
|
DefaultMaxBackoff |
The default maximum amount of time used when calculating the exponential delay between retries.
|
|
DefaultMinBackoff |
The default minimum amount of time used when calculating the exponential delay between retries.
|
|
DefaultProgressive |
Returns a default policy that implements a progressive retry interval configured with DefaultClientRetryCount, DefaultRetryInterval and DefaultRetryIncrement parameters. The default retry policy treats all caught exceptions as transient errors.
|
|
DefaultRetryIncrement |
The default amount of time defining a time increment between retry attempts in the progressive delay policy.
|
|
DefaultRetryInterval |
The default amount of time defining an interval between retries.
|
|
NoRetry |
Returns a default policy that does no retries, it just invokes action exactly once.
|
Properties
Name | Description | |
---|---|---|
FastFirstRetry |
Gets or sets a value indicating whether or not the very first retry attempt will be made immediately whereas the subsequent retries will remain subject to retry interval.
|
|
Name |
Gets the name of the retry strategy.
|