Click or drag to resize
BulkWriteResult<TDocument>.Acknowledged Constructor

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
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