IMongoSearchIndexManager.CreateOneAsync Method (CreateSearchIndexModel, CancellationToken) |
Creates a search index.
Namespace:
MongoDB.Driver.Search
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
SyntaxTask<string> CreateOneAsync(
CreateSearchIndexModel model,
CancellationToken cancellationToken = null
)
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 null
*)
-> Task<string>
Parameters
- model
- Type: MongoDB.Driver.CreateSearchIndexModel
The model defining the index. - cancellationToken (Optional)
- Type: System.Threading.CancellationToken
The cancellation token.
Return Value
Type:
Task<String>
A Task whose result is the name of the index that was created.
See Also