IMongoSearchIndexManagerUpdateAsync Method |
Update the search index.
Namespace:
MongoDB.Driver.Search
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax Task UpdateAsync(
string name,
BsonDocument definition,
CancellationToken cancellationToken = null
)
Function UpdateAsync (
name As String,
definition As BsonDocument,
Optional cancellationToken As CancellationToken = Nothing
) As Task
abstract UpdateAsync :
name : string *
definition : BsonDocument *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task
Parameters
- name
- Type: SystemString
Name of the index. - definition
- Type: MongoDB.BsonBsonDocument
The definition. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskA Task.
See Also