IMongoSearchIndexManagerCreateOne Method (CreateSearchIndexModel, CancellationToken) | 
 
            Creates a search index.
            
 
    Namespace: 
   MongoDB.Driver.Search
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxstring CreateOne(
	CreateSearchIndexModel model,
	CancellationToken cancellationToken = default
)
Function CreateOne ( 
	model As CreateSearchIndexModel,
	Optional cancellationToken As CancellationToken = Nothing
) As String
abstract CreateOne : 
        model : CreateSearchIndexModel * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> string 
Parameters
- model
 - Type: MongoDB.DriverCreateSearchIndexModel
The model defining the index. - cancellationToken (Optional)
 - Type: System.ThreadingCancellationToken
The cancellation token. 
Return Value
Type: 
String
            The name of the index that was created.
            
See Also