Class BulkWriteResult<TDocument>.Acknowledged
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
intThe request count.
matchedCount
longThe matched count.
deletedCount
longThe deleted count.
insertedCount
longThe 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
InsertedCount
Gets the number of documents that were inserted.
public override long InsertedCount { get; }
Property Value
IsAcknowledged
Gets a value indicating whether the bulk write operation was acknowledged.
public override bool IsAcknowledged { get; }
Property Value
IsModifiedCountAvailable
Gets a value indicating whether the modified count is available.
public override bool IsModifiedCountAvailable { get; }
Property Value
Remarks
The available modified count.
MatchedCount
Gets the number of documents that were matched.
public override long MatchedCount { get; }
Property Value
ModifiedCount
Gets the number of documents that were actually modified during an update.
public override long ModifiedCount { get; }
Property Value
Upserts
Gets a list with information about each request that resulted in an upsert.
public override IReadOnlyList<BulkWriteUpsert> Upserts { get; }