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.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
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