Class MongoConnectionException
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
ConnectionIdThe connection identifier.
message
stringThe error message.
MongoConnectionException(ConnectionId, string, Exception)
Initializes a new instance of the MongoConnectionException class.
public MongoConnectionException(ConnectionId connectionId, string message, Exception innerException)
Parameters
connectionId
ConnectionIdThe connection identifier.
message
stringThe error message.
innerException
ExceptionThe inner exception.
MongoConnectionException(SerializationInfo, StreamingContext)
Initializes a new instance of the MongoConnectionException class.
public MongoConnectionException(SerializationInfo info, StreamingContext context)
Parameters
info
SerializationInfoThe SerializationInfo.
context
StreamingContextThe StreamingContext.
Properties
ConnectionId
Gets the connection identifier.
public ConnectionId ConnectionId { get; }
Property Value
ContainsSocketTimeoutException
Whether or not this exception contains a socket timeout exception.
[Obsolete("Use ContainsTimeoutException instead.")]
public bool ContainsSocketTimeoutException { get; }
Property Value
ContainsTimeoutException
Whether or not this exception contains a timeout exception.
public bool ContainsTimeoutException { get; }
Property Value
IsNetworkException
Determines whether the exception is network error or no.
public virtual bool IsNetworkException { get; }
Property Value
Methods
GetObjectData(SerializationInfo, StreamingContext)
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
info
SerializationInfocontext
StreamingContext