MongoIndexManagerBaseTDocumentListAsync Method (CancellationToken) |
Lists the indexes.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntaxpublic abstract Task<IAsyncCursor<BsonDocument>> ListAsync(
CancellationToken cancellationToken = null
)
Public MustOverride Function ListAsync (
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IAsyncCursor(Of BsonDocument))
abstract ListAsync :
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<IAsyncCursor<BsonDocument>>
Parameters
- cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskIAsyncCursorBsonDocumentA Task whose result is a cursor.
Implements
IMongoIndexManagerTDocumentListAsync(CancellationToken)
See Also