C# Class Microsoft.Isam.Esent.EsentException

Inheritance: System.Exception
Mostra file Open project: ayende/managed-esent Class Usage Examples

Public Methods

Method Description
EsentException ( ) : System

Initializes a new instance of the EsentException class.

EsentException ( string message ) : System

Initializes a new instance of the EsentException class with a specified error message.

EsentException ( string message, Exception innerException ) : System

Initializes a new instance of the EsentException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Protected Methods

Method Description
EsentException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the EsentException class. This constructor is used to deserialize a serialized exception.

Method Details

EsentException() public method

Initializes a new instance of the EsentException class.
public EsentException ( ) : System
return System

EsentException() protected method

Initializes a new instance of the EsentException class. This constructor is used to deserialize a serialized exception.
protected EsentException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The data needed to deserialize the object.
context System.Runtime.Serialization.StreamingContext The deserialization context.
return System

EsentException() public method

Initializes a new instance of the EsentException class with a specified error message.
public EsentException ( string message ) : System
message string The message that describes the error.
return System

EsentException() public method

Initializes a new instance of the EsentException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public EsentException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException System.Exception /// The exception that is the cause of the current exception, or a null reference /// (Nothing in Visual Basic) if no inner exception is specified. ///
return System