RetryStrategy Properties

 

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

NameDescription
System_CAPS_pubpropertySystem_CAPS_staticDefaultExponential

Returns a default policy that implements a random exponential retry interval configured with the DefaultClientRetryCount, DefaultMinBackoff, DefaultMaxBackoff, and DefaultClientBackoff parameters. The default retry policy treats all caught exceptions as transient errors.

System_CAPS_pubpropertySystem_CAPS_staticDefaultFixed

Returns a default policy that implements a fixed retry interval configured with the DefaultClientRetryCount and DefaultRetryInterval parameters. The default retry policy treats all caught exceptions as transient errors.

System_CAPS_pubpropertySystem_CAPS_staticDefaultProgressive

Returns a default policy that implements a progressive retry interval configured with the DefaultClientRetryCount, DefaultRetryInterval, and DefaultRetryIncrement parameters. The default retry policy treats all caught exceptions as transient errors.

System_CAPS_pubpropertyFastFirstRetry

Gets or sets a value indicating whether the first retry attempt will be made immediately, whereas subsequent retries will remain subject to the retry interval.

System_CAPS_pubpropertyName

Gets the name of the retry strategy.

System_CAPS_pubpropertySystem_CAPS_staticNoRetry

Returns a default policy that performs no retries, but invokes the action only once.

Return to top
Show: