MongoCommandException Constructor (ConnectionId, String, BsonDocument, BsonDocument, Exception) |
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntaxpublic MongoCommandException(
ConnectionId connectionId,
string message,
BsonDocument command,
BsonDocument result,
Exception innerException
)
Public Sub New (
connectionId As ConnectionId,
message As String,
command As BsonDocument,
result As BsonDocument,
innerException As Exception
)
new :
connectionId : ConnectionId *
message : string *
command : BsonDocument *
result : BsonDocument *
innerException : Exception -> MongoCommandException
Parameters
- connectionId
- Type: MongoDB.Driver.Core.Connections.ConnectionId
The connection identifier. - message
- Type: System.String
The message. - command
- Type: MongoDB.Bson.BsonDocument
The command. - result
- Type: MongoDB.Bson.BsonDocument
The command result. - innerException
- Type: System.Exception
The inner exception.
See Also