Click or drag to resize

MongoClientBase.ListDatabases Method (IClientSessionHandle, CancellationToken)

Lists the databases on the server.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
public virtual IAsyncCursor<BsonDocument> ListDatabases(
	IClientSessionHandle session,
	CancellationToken cancellationToken = null
)

Parameters

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

Return Value

Type: IAsyncCursor<BsonDocument>
A cursor.

Implements

IMongoClient.ListDatabases(IClientSessionHandle, CancellationToken)
See Also