ResourceCounter Constructors

Definition

Overloads

ResourceCounter()

Initializes a new instance of the ResourceCounter class.

ResourceCounter(Int64, Nullable<Int64>)

Initializes a new instance of the ResourceCounter class.

ResourceCounter()

Source:
ResourceCounter.cs

Initializes a new instance of the ResourceCounter class.

public ResourceCounter ();
Public Sub New ()

Applies to

ResourceCounter(Int64, Nullable<Int64>)

Source:
ResourceCounter.cs

Initializes a new instance of the ResourceCounter class.

public ResourceCounter (long usage = 0, long? quota = default);
new Microsoft.Azure.Search.Models.ResourceCounter : int64 * Nullable<int64> -> Microsoft.Azure.Search.Models.ResourceCounter
Public Sub New (Optional usage As Long = 0, Optional quota As Nullable(Of Long) = Nothing)

Parameters

usage
Int64

The resource usage amount.

quota
Nullable<Int64>

The resource amount quota.

Applies to