Class BulkWriteResult<TDocument>.Unacknowledged
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
intThe 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
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; }