Table of Contents

Class MongoCommandException

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.Core.dll

Represents a MongoDB command exception.

[Serializable]
public class MongoCommandException : MongoServerException, ISerializable
Inheritance
MongoCommandException
Implements
Derived
Inherited Members

Constructors

MongoCommandException(ConnectionId, string, BsonDocument)

Initializes a new instance of the MongoCommandException class.

public MongoCommandException(ConnectionId connectionId, string message, BsonDocument command)

Parameters

connectionId ConnectionId

The connection identifier.

message string

The message.

command BsonDocument

The command.

MongoCommandException(ConnectionId, string, BsonDocument, BsonDocument)

Initializes a new instance of the MongoCommandException class.

public MongoCommandException(ConnectionId connectionId, string message, BsonDocument command, BsonDocument result)

Parameters

connectionId ConnectionId

The connection identifier.

message string

The message.

command BsonDocument

The command.

result BsonDocument

The command result.

MongoCommandException(ConnectionId, string, BsonDocument, BsonDocument, Exception)

Initializes a new instance of the MongoCommandException class.

public MongoCommandException(ConnectionId connectionId, string message, BsonDocument command, BsonDocument result, Exception innerException)

Parameters

connectionId ConnectionId

The connection identifier.

message string

The message.

command BsonDocument

The command.

result BsonDocument

The command result.

innerException Exception

The inner exception.

MongoCommandException(SerializationInfo, StreamingContext)

Initializes a new instance of the MongoCommandException class.

protected MongoCommandException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

The SerializationInfo.

context StreamingContext

The StreamingContext.

Properties

Code

Gets the error code.

public int Code { get; }

Property Value

int

The error code.

CodeName

Gets the name of the error code.

public string CodeName { get; }

Property Value

string

The name of the error code.

Command

Gets the command.

public BsonDocument Command { get; }

Property Value

BsonDocument

The command.

ErrorMessage

Gets the error message.

public string ErrorMessage { get; }

Property Value

string

The error message.

Result

Gets the command result.

public BsonDocument Result { get; }

Property Value

BsonDocument

The command result.

Methods

GetObjectData(SerializationInfo, StreamingContext)

public override void GetObjectData(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo
context StreamingContext