Table of Contents

Class MongoConnectionException

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

Represents a MongoDB connection exception.

[Serializable]
public class MongoConnectionException : MongoException, ISerializable
Inheritance
MongoConnectionException
Implements
Derived
Inherited Members

Constructors

MongoConnectionException(ConnectionId, string)

Initializes a new instance of the MongoConnectionException class.

public MongoConnectionException(ConnectionId connectionId, string message)

Parameters

connectionId ConnectionId

The connection identifier.

message string

The error message.

MongoConnectionException(ConnectionId, string, Exception)

Initializes a new instance of the MongoConnectionException class.

public MongoConnectionException(ConnectionId connectionId, string message, Exception innerException)

Parameters

connectionId ConnectionId

The connection identifier.

message string

The error message.

innerException Exception

The inner exception.

MongoConnectionException(SerializationInfo, StreamingContext)

Initializes a new instance of the MongoConnectionException class.

public MongoConnectionException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

The SerializationInfo.

context StreamingContext

The StreamingContext.

Properties

ConnectionId

Gets the connection identifier.

public ConnectionId ConnectionId { get; }

Property Value

ConnectionId

ContainsSocketTimeoutException

Whether or not this exception contains a socket timeout exception.

[Obsolete("Use ContainsTimeoutException instead.")]
public bool ContainsSocketTimeoutException { get; }

Property Value

bool

ContainsTimeoutException

Whether or not this exception contains a timeout exception.

public bool ContainsTimeoutException { get; }

Property Value

bool

IsNetworkException

Determines whether the exception is network error or no.

public virtual bool IsNetworkException { get; }

Property Value

bool

Methods

GetObjectData(SerializationInfo, StreamingContext)

public override void GetObjectData(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo
context StreamingContext