Show / Hide Table of Contents

    Class FixedIntervalRetryStrategy

    Inheritance
    Object
    RetryStrategy
    FixedIntervalRetryStrategy
    Inherited Members
    RetryStrategy.FastFirstRetry
    RetryStrategy.Name
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Rest.ClientRuntime.dll
    Syntax
    public class FixedIntervalRetryStrategy : Microsoft.Rest.TransientFaultHandling.RetryStrategy

    Constructors

    FixedIntervalRetryStrategy()

    Declaration
    public FixedIntervalRetryStrategy ();

    FixedIntervalRetryStrategy(Int32)

    Declaration
    public FixedIntervalRetryStrategy (int retryCount);
    Parameters
    Int32 retryCount

    FixedIntervalRetryStrategy(Int32, TimeSpan)

    Declaration
    public FixedIntervalRetryStrategy (int retryCount, TimeSpan retryInterval);
    Parameters
    Int32 retryCount

    TimeSpan retryInterval

    FixedIntervalRetryStrategy(String, Int32, TimeSpan)

    Declaration
    public FixedIntervalRetryStrategy (string name, int retryCount, TimeSpan retryInterval);
    Parameters
    String name

    Int32 retryCount

    TimeSpan retryInterval

    FixedIntervalRetryStrategy(String, Int32, TimeSpan, Boolean)

    Declaration
    public FixedIntervalRetryStrategy (string name, int retryCount, TimeSpan retryInterval, bool firstFastRetry);
    Parameters
    String name

    Int32 retryCount

    TimeSpan retryInterval

    Boolean firstFastRetry

    Methods

    GetShouldRetryHandler()

    Declaration
    public override Microsoft.Rest.TransientFaultHandling.ShouldRetryHandler GetShouldRetryHandler ();
    Returns
    ShouldRetryHandler

    Back to top Azure SDK for Net