Click or drag to resize

IMongoSearchIndexManagerCreateManyAsync Method

Creates multiple indexes.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
Task<IEnumerable<string>> CreateManyAsync(
	IEnumerable<CreateSearchIndexModel> models,
	CancellationToken cancellationToken = null
)

Parameters

models
Type: System.Collections.GenericIEnumerableCreateSearchIndexModel
The models defining each of the indexes.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskIEnumerableString
A Task whose result is an IEnumerableT of the names of the indexes that were created.
See Also