DocumentSearchResponseBase<TResult, TDoc>.Count Property

 

Applies To: Microsoft Azure

Gets the total count of results found by the search operation, or null if the count was not requested.

Namespace:   Microsoft.Azure.Search.Models
Assembly:  Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)

Syntax

public Nullable<long> Count { get; set; }
public:
property Nullable<long long> Count {
    Nullable<long long> get();
    void set(Nullable<long long> value);
}
member Count : Nullable<int64> with get, set
Public Property Count As Nullable(Of Long)

Property Value

Type: System.Nullable<Int64>

Remarks

If present, the count may be greater than the number of results in this response. In that case, use the ContinuationToken property to fetch the next page of results.

See Also

DocumentSearchResponseBase<TResult, TDoc> Class
Microsoft.Azure.Search.Models Namespace

Return to top