Table of Contents

Class SearchMetaCountResult

Namespace
MongoDB.Driver.Search
Assembly
MongoDB.Driver.dll

A search count result set.

public sealed class SearchMetaCountResult
Inheritance
SearchMetaCountResult
Inherited Members

Constructors

SearchMetaCountResult(long?, long?)

Initializes a new instance of the SearchMetaCountResult class.

public SearchMetaCountResult(long? lowerBound, long? total)

Parameters

lowerBound long?

Lower bound for this result set.

total long?

Total for this result set.

Properties

LowerBound

Gets the lower bound for this result set.

[BsonDefaultValue(null)]
[BsonElement("lowerBound")]
public long? LowerBound { get; }

Property Value

long?

Total

Gets the total for this result set.

[BsonDefaultValue(null)]
[BsonElement("total")]
public long? Total { get; }

Property Value

long?