IMongoSearchIndexManagerUpdate Method |
Update the search index.
Namespace:
MongoDB.Driver.Search
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax void Update(
string name,
BsonDocument definition,
CancellationToken cancellationToken = default
)
Sub Update (
name As String,
definition As BsonDocument,
Optional cancellationToken As CancellationToken = Nothing
)
abstract Update :
name : string *
definition : BsonDocument *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> unit
Parameters
- name
- Type: SystemString
Name of the index. - definition
- Type: MongoDB.BsonBsonDocument
The definition. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
See Also