UpdateResultAcknowledged Constructor |
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax public Acknowledged(
long matchedCount,
Nullable<long> modifiedCount,
BsonValue upsertedId
)
Public Sub New (
matchedCount As Long,
modifiedCount As Nullable(Of Long),
upsertedId As BsonValue
)
new :
matchedCount : int64 *
modifiedCount : Nullable<int64> *
upsertedId : BsonValue -> Acknowledged
Parameters
- matchedCount
- Type: SystemInt64
The matched count. - modifiedCount
- Type: SystemNullableInt64
The modified count. - upsertedId
- Type: MongoDB.BsonBsonValue
The upserted id.
See Also