Click or drag to resize

MongoClient.ListDatabases Method (IClientSessionHandle, ListDatabasesOptions, CancellationToken)

Lists the databases on the server.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.16.0+eeafbea0921243a5868b81984e1083a07c1f75bc
Syntax
public override sealed IAsyncCursor<BsonDocument> ListDatabases(
	IClientSessionHandle session,
	ListDatabasesOptions options,
	CancellationToken cancellationToken = default
)

Parameters

session
Type: MongoDB.Driver.IClientSessionHandle
The session.
options
Type: MongoDB.Driver.ListDatabasesOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: IAsyncCursor<BsonDocument>
A cursor.

Implements

IMongoClient.ListDatabases(IClientSessionHandle, ListDatabasesOptions, CancellationToken)
See Also