Show / Hide Table of Contents

    Class ResourceRange

    Describes the resource range.

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

    Constructors

    ResourceRange()

    Initializes a new instance of the ResourceRange class.

    Declaration
    public ResourceRange ();

    ResourceRange(Nullable<Int32>, Nullable<Int32>)

    Initializes a new instance of the ResourceRange class.

    Declaration
    public ResourceRange (Nullable<int> min = null, Nullable<int> max = null);
    Parameters
    Nullable<Int32> min

    The minimum number of the resource.

    Nullable<Int32> max

    The maximum number of the resource.

    Properties

    Max

    Gets or sets the maximum number of the resource.

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

    Min

    Gets or sets the minimum number of the resource.

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

    Back to top Azure SDK for Net