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