Click or drag to resize

MongoDatabaseBase.ListCollectionNamesAsync Method (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
public virtual Task<IAsyncCursor<string>> ListCollectionNamesAsync(
	ListCollectionNamesOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

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.

Implements

IMongoDatabase.ListCollectionNamesAsync(ListCollectionNamesOptions, CancellationToken)
See Also