Click or drag to resize

MongoBulkWriteException<TDocument> Constructor (ConnectionId, BulkWriteResult<TDocument>, IEnumerable<BulkWriteError>, WriteConcernError, IEnumerable<WriteModel<TDocument>>)

Initializes a new instance of the MongoBulkWriteException class.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.17.0+b316340e6cc3a8bfc8638dc31b54fbbfe41bfcb2
Syntax
public MongoBulkWriteException(
	ConnectionId connectionId,
	BulkWriteResult<TDocument> result,
	IEnumerable<BulkWriteError> writeErrors,
	WriteConcernError writeConcernError,
	IEnumerable<WriteModel<TDocument>> unprocessedRequests
)

Parameters

connectionId
Type: MongoDB.Driver.Core.Connections.ConnectionId
The connection identifier.
result
Type: MongoDB.Driver.BulkWriteResult<TDocument>
The result.
writeErrors
Type: System.Collections.Generic.IEnumerable<BulkWriteError>
The write errors.
writeConcernError
Type: MongoDB.Driver.WriteConcernError
The write concern error.
unprocessedRequests
Type: System.Collections.Generic.IEnumerable<WriteModel<TDocument>>
The unprocessed requests.
See Also