Class ResourceRange
Describes the resource range.
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>
|