Click or drag to resize

BulkWriteResult<TDocument>.Acknowledged Constructor

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public Acknowledged(
	int requestCount,
	long matchedCount,
	long deletedCount,
	long insertedCount,
	Nullable<long> modifiedCount,
	IEnumerable<WriteModel<TDocument>> processedRequests,
	IEnumerable<BulkWriteUpsert> upserts
)

Parameters

requestCount
Type: System.Int32
The request count.
matchedCount
Type: System.Int64
The matched count.
deletedCount
Type: System.Int64
The deleted count.
insertedCount
Type: System.Int64
The inserted count.
modifiedCount
Type: System.Nullable<Int64>
The modified count.
processedRequests
Type: System.Collections.Generic.IEnumerable<WriteModel<TDocument>>
The processed requests.
upserts
Type: System.Collections.Generic.IEnumerable<BulkWriteUpsert>
The upserts.
See Also