Click or drag to resize

IMongoDatabase.ListCollectionNamesAsync Method (IClientSessionHandle, ListCollectionNamesOptions, CancellationToken)

Lists the names of all the collections in the database.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
Task<IAsyncCursor<string>> ListCollectionNamesAsync(
	IClientSessionHandle session,
	ListCollectionNamesOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

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

Return Value

Type: Task<IAsyncCursor<String>>
A Task whose result is a cursor.
See Also