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