Click or drag to resize

MongoBulkWriteExceptionTDocument Constructor (ConnectionId, BulkWriteResultTDocument, IEnumerableBulkWriteError, WriteConcernError, IEnumerableWriteModelTDocument)

Initializes a new instance of the MongoBulkWriteException class.

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

Parameters

connectionId
Type: MongoDB.Driver.Core.ConnectionsConnectionId
The connection identifier.
result
Type: MongoDB.DriverBulkWriteResultTDocument
The result.
writeErrors
Type: System.Collections.GenericIEnumerableBulkWriteError
The write errors.
writeConcernError
Type: MongoDB.DriverWriteConcernError
The write concern error.
unprocessedRequests
Type: System.Collections.GenericIEnumerableWriteModelTDocument
The unprocessed requests.
See Also