BulkWriteConcernError Constructor (Int32, String, String, BsonDocument, IEnumerableString) |
Namespace:
MongoDB.Driver.Core.Operations
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax public BulkWriteConcernError(
int code,
string codeName,
string message,
BsonDocument details,
IEnumerable<string> errorLabels
)
Public Sub New (
code As Integer,
codeName As String,
message As String,
details As BsonDocument,
errorLabels As IEnumerable(Of String)
)
new :
code : int *
codeName : string *
message : string *
details : BsonDocument *
errorLabels : IEnumerable<string> -> BulkWriteConcernError
Parameters
- code
- Type: SystemInt32
The code. - codeName
- Type: SystemString
The name of the code. - message
- Type: SystemString
The message. - details
- Type: MongoDB.BsonBsonDocument
The details. - errorLabels
- Type: System.Collections.GenericIEnumerableString
The error labels.
See Also