C# Class CrossroadsIO.XsException

Inheritance: System.Exception
Afficher le fichier Open project: jgoz/crossroads-net

Méthodes publiques

Méthode Description
XsException ( int errorCode ) : System

Initializes a new instance of the XsException class.

XsException ( int errorCode, string message ) : System

Initializes a new instance of the XsException class.

XsException ( int errorCode, string message, Exception inner ) : System

Initializes a new instance of the XsException class.

Méthodes protégées

Méthode Description
XsException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the XsException class.

Private Methods

Méthode Description
GetErrorName ( int errorCode ) : string
XsException ( ErrorDetails errorDetails ) : System

Method Details

XsException() protected méthode

Initializes a new instance of the XsException class.
protected XsException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext that contains contextual information about the source or destination.
Résultat System

XsException() public méthode

Initializes a new instance of the XsException class.
public XsException ( int errorCode ) : System
errorCode int The error code returned by the Crossroads I/O library call.
Résultat System

XsException() public méthode

Initializes a new instance of the XsException class.
public XsException ( int errorCode, string message ) : System
errorCode int The error code returned by the Crossroads I/O library call.
message string The message that describes the error
Résultat System

XsException() public méthode

Initializes a new instance of the XsException class.
public XsException ( int errorCode, string message, Exception inner ) : System
errorCode int The error code returned by the Crossroads I/O library call.
message string The message that describes the error
inner 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.
Résultat System