Click or drag to resize

MongoCollectionBase<TDocument>.CountAsync Method (IClientSessionHandle, 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 virtual Task<long> CountAsync(
	IClientSessionHandle session,
	FilterDefinition<TDocument> filter,
	CountOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

session
Type: MongoDB.Driver.IClientSessionHandle
The session.
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(IClientSessionHandle, FilterDefinition<TDocument>, CountOptions, CancellationToken)
See Also