IMongoSearchIndexManagerCreateOneAsync Method (BsonDocument, String, CancellationToken) | 
 
            Creates a search index.
            
 
    Namespace: 
   MongoDB.Driver.Search
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
SyntaxTask<string> CreateOneAsync(
	BsonDocument definition,
	string name = null,
	CancellationToken cancellationToken = default
)
Function CreateOneAsync ( 
	definition As BsonDocument,
	Optional name As String = Nothing,
	Optional cancellationToken As CancellationToken = Nothing
) As Task(Of String)
abstract CreateOneAsync : 
        definition : BsonDocument * 
        ?name : string * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _name = defaultArg name null
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<string> 
Parameters
- definition
 - Type: MongoDB.BsonBsonDocument
The index definition. - name (Optional)
 - Type: SystemString
The index name. - cancellationToken (Optional)
 - Type: System.ThreadingCancellationToken
The cancellation token. 
Return Value
Type: 
TaskString
            The name of the index that was created.
            
See Also