RetryStrategy Properties
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | DefaultExponential | 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. |
![]() ![]() | DefaultFixed | 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. |
![]() ![]() | DefaultProgressive | 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. |
![]() | FastFirstRetry | 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. |
![]() | Name | Gets the name of the retry strategy. |
![]() ![]() | NoRetry | Returns a default policy that performs no retries, but invokes the action only once. |

