IndexGetStatisticsResult Constructors

Definition

Overloads

IndexGetStatisticsResult()

Initializes a new instance of the IndexGetStatisticsResult class.

IndexGetStatisticsResult(Int64, Int64)

Initializes a new instance of the IndexGetStatisticsResult class.

IndexGetStatisticsResult()

Source:
IndexGetStatisticsResult.cs

Initializes a new instance of the IndexGetStatisticsResult class.

public IndexGetStatisticsResult ();
Public Sub New ()

Applies to

IndexGetStatisticsResult(Int64, Int64)

Source:
IndexGetStatisticsResult.cs

Initializes a new instance of the IndexGetStatisticsResult class.

public IndexGetStatisticsResult (long documentCount = 0, long storageSize = 0);
new Microsoft.Azure.Search.Models.IndexGetStatisticsResult : int64 * int64 -> Microsoft.Azure.Search.Models.IndexGetStatisticsResult
Public Sub New (Optional documentCount As Long = 0, Optional storageSize As Long = 0)

Parameters

documentCount
Int64

The number of documents in the index.

storageSize
Int64

The amount of storage in bytes consumed by the index.

Applies to