MongoCommandException Constructor (ConnectionId, String, BsonDocument, BsonDocument, Exception) |
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax public 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.ConnectionsConnectionId
The connection identifier. - message
- Type: SystemString
The message. - command
- Type: MongoDB.BsonBsonDocument
The command. - result
- Type: MongoDB.BsonBsonDocument
The command result. - innerException
- Type: SystemException
The inner exception.
See Also