UpdateRequest Constructor |
Namespace:
MongoDB.Driver.Core.Operations
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public UpdateRequest(
UpdateType updateType,
BsonDocument filter,
BsonValue update
)
Public Sub New (
updateType As UpdateType,
filter As BsonDocument,
update As BsonValue
)
new :
updateType : UpdateType *
filter : BsonDocument *
update : BsonValue -> UpdateRequest
Parameters
- updateType
- Type: MongoDB.Driver.Core.OperationsUpdateType
The update type. - filter
- Type: MongoDB.BsonBsonDocument
The filter. - update
- Type: MongoDB.BsonBsonValue
The update.
See Also