IMongoIndexManagerTDocumentListAsync Method (ListIndexesOptions, CancellationToken) |
Lists the indexes.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax Task<IAsyncCursor<BsonDocument>> ListAsync(
ListIndexesOptions options,
CancellationToken cancellationToken = default
)
Function ListAsync (
options As ListIndexesOptions,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IAsyncCursor(Of BsonDocument))
abstract ListAsync :
options : ListIndexesOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<IAsyncCursor<BsonDocument>>
Parameters
- options
- Type: MongoDB.DriverListIndexesOptions
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskIAsyncCursorBsonDocumentA Task whose result is a cursor.
See Also