Show / Hide Table of Contents

    Class RetryPolicy

    Inheritance
    Object
    RetryPolicy
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Scheduler.dll
    Syntax
    public class RetryPolicy

    Constructors

    RetryPolicy()

    Initializes a new instance of the RetryPolicy class.

    Declaration
    public RetryPolicy ();

    RetryPolicy(Nullable<RetryType>, Nullable<TimeSpan>, Nullable<Int32>)

    Initializes a new instance of the RetryPolicy class.

    Declaration
    public RetryPolicy (Nullable<Microsoft.Azure.Management.Scheduler.Models.RetryType> retryType = null, Nullable<TimeSpan> retryInterval = null, Nullable<int> retryCount = null);
    Parameters
    Nullable<RetryType> retryType

    Nullable<TimeSpan> retryInterval

    Nullable<Int32> retryCount

    Properties

    RetryCount

    Gets or sets the number of times a retry should be attempted.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="retryCount")]
    public Nullable<int> RetryCount { get; set; }
    Property Value
    Nullable<Int32>

    RetryInterval

    Gets or sets the retry interval between retries, specify duration in ISO 8601 format.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="retryInterval")]
    public Nullable<TimeSpan> RetryInterval { get; set; }
    Property Value
    Nullable<TimeSpan>

    RetryType

    Gets or sets the retry strategy to be used. Possible values include: 'None', 'Fixed'

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="retryType")]
    public Nullable<Microsoft.Azure.Management.Scheduler.Models.RetryType> RetryType { get; set; }
    Property Value
    Nullable<RetryType>

    Back to top Azure SDK for Net