IMongoIndexManagerTDocumentCreateManyAsync Method (IEnumerableCreateIndexModelTDocument, CreateManyIndexesOptions, CancellationToken) | 
 
            Creates multiple indexes.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
SyntaxTask<IEnumerable<string>> CreateManyAsync(
	IEnumerable<CreateIndexModel<TDocument>> models,
	CreateManyIndexesOptions options,
	CancellationToken cancellationToken = default
)
Function CreateManyAsync ( 
	models As IEnumerable(Of CreateIndexModel(Of TDocument)),
	options As CreateManyIndexesOptions,
	Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IEnumerable(Of String))
abstract CreateManyAsync : 
        models : IEnumerable<CreateIndexModel<'TDocument>> * 
        options : CreateManyIndexesOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<IEnumerable<string>> 
Parameters
- models
 - Type: System.Collections.GenericIEnumerableCreateIndexModelTDocument
The models defining each of the indexes. - options
 - Type: MongoDB.DriverCreateManyIndexesOptions
The options for create multiple 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