IMongoCollectionTDocumentCountAsync Method (FilterDefinitionTDocument, 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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax [ObsoleteAttribute("Use CountDocumentsAsync or EstimatedDocumentCountAsync instead.")]
Task<long> CountAsync(
FilterDefinition<TDocument> filter,
CountOptions options = null,
CancellationToken cancellationToken = default
)
<ObsoleteAttribute("Use CountDocumentsAsync or EstimatedDocumentCountAsync instead.")>
Function CountAsync (
filter As FilterDefinition(Of TDocument),
Optional options As CountOptions = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of Long)
[<ObsoleteAttribute("Use CountDocumentsAsync or EstimatedDocumentCountAsync instead.")>]
abstract CountAsync :
filter : FilterDefinition<'TDocument> *
?options : CountOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _options = defaultArg options null
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<int64>
Parameters
- filter
- Type: MongoDB.DriverFilterDefinitionTDocument
The filter. - options (Optional)
- Type: MongoDB.DriverCountOptions
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskInt64
The number of documents in the collection.
See Also