Click or drag to resize

MongoCollectionBase<TDocument>.CountAsync Method (FilterDefinition<TDocument>, CountOptions, CancellationToken)

Note: This API is now obsolete.

Counts the number of documents in the collection.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax
[ObsoleteAttribute("Use CountDocumentsAsync or EstimatedDocumentCountAsync instead.")]
public abstract Task<long> CountAsync(
	FilterDefinition<TDocument> filter,
	CountOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

filter
Type: MongoDB.Driver.FilterDefinition<TDocument>
The filter.
options (Optional)
Type: MongoDB.Driver.CountOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<Int64>
The number of documents in the collection.

Implements

IMongoCollection<TDocument>.CountAsync(FilterDefinition<TDocument>, CountOptions, CancellationToken)
See Also