Table of Contents

Class BulkWriteResult<TDocument>.Acknowledged

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Result from an acknowledged write concern.

[Serializable]
public class BulkWriteResult<TDocument>.Acknowledged : BulkWriteResult<TDocument>
Inheritance
BulkWriteResult<TDocument>
BulkWriteResult<TDocument>.Acknowledged
Inherited Members

Constructors

Acknowledged(int, long, long, long, long?, IEnumerable<WriteModel<TDocument>>, IEnumerable<BulkWriteUpsert>)

Initializes a new instance of the BulkWriteResult<TDocument>.Acknowledged class.

public Acknowledged(int requestCount, long matchedCount, long deletedCount, long insertedCount, long? modifiedCount, IEnumerable<WriteModel<TDocument>> processedRequests, IEnumerable<BulkWriteUpsert> upserts)

Parameters

requestCount int

The request count.

matchedCount long

The matched count.

deletedCount long

The deleted count.

insertedCount long

The inserted count.

modifiedCount long?

The modified count.

processedRequests IEnumerable<WriteModel<TDocument>>

The processed requests.

upserts IEnumerable<BulkWriteUpsert>

The upserts.

Properties

DeletedCount

Gets the number of documents that were deleted.

public override long DeletedCount { get; }

Property Value

long

InsertedCount

Gets the number of documents that were inserted.

public override long InsertedCount { get; }

Property Value

long

IsAcknowledged

Gets a value indicating whether the bulk write operation was acknowledged.

public override bool IsAcknowledged { get; }

Property Value

bool

IsModifiedCountAvailable

Gets a value indicating whether the modified count is available.

public override bool IsModifiedCountAvailable { get; }

Property Value

bool

Remarks

The available modified count.

MatchedCount

Gets the number of documents that were matched.

public override long MatchedCount { get; }

Property Value

long

ModifiedCount

Gets the number of documents that were actually modified during an update.

public override long ModifiedCount { get; }

Property Value

long

Upserts

Gets a list with information about each request that resulted in an upsert.

public override IReadOnlyList<BulkWriteUpsert> Upserts { get; }

Property Value

IReadOnlyList<BulkWriteUpsert>