Click or drag to resize

BulkWriteResult<TDocument>.Acknowledged Constructor

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
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