Table of Contents

Class BulkWriteResult<TDocument>.Unacknowledged

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Result from an unacknowledged write concern.

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

Constructors

Unacknowledged(int, IEnumerable<WriteModel<TDocument>>)

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

public Unacknowledged(int requestCount, IEnumerable<WriteModel<TDocument>> processedRequests)

Parameters

requestCount int

The request count.

processedRequests IEnumerable<WriteModel<TDocument>>

The processed requests.

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>