Click or drag to resize

BulkWriteOperationResultAcknowledged Constructor

Namespace:  MongoDB.Driver.Core.Operations
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public Acknowledged(
	int requestCount,
	long matchedCount,
	long deletedCount,
	long insertedCount,
	Nullable<long> modifiedCount,
	IReadOnlyList<WriteRequest> processedRequests,
	IReadOnlyList<BulkWriteOperationUpsert> upserts
)

Parameters

requestCount
Type: SystemInt32
The request count.
matchedCount
Type: SystemInt64
The matched count.
deletedCount
Type: SystemInt64
The deleted count.
insertedCount
Type: SystemInt64
The inserted count.
modifiedCount
Type: SystemNullableInt64
The modified count.
processedRequests
Type: System.Collections.GenericIReadOnlyListWriteRequest
The processed requests.
upserts
Type: System.Collections.GenericIReadOnlyListBulkWriteOperationUpsert
The upserts.
See Also