C# Class NSoft.NFramework.Networks.FtpException

Inheritance: NetworkException
Show file Open project: debop/NFramework

Public Methods

Method Description
FtpException ( ) : System

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class

FtpException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class with serialized data.

FtpException ( string message ) : System

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class with a specified error message.

FtpException ( string message, Exception innerException ) : System

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class with a specified error message and a reference to the inner exception that is the cause of this exception

Method Details

FtpException() public method

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class
public FtpException ( ) : System
return System

FtpException() public method

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class with serialized data.
public FtpException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The object that holds the serialized object data.
context System.Runtime.Serialization.StreamingContext The contextual information about the source or destination.
return System

FtpException() public method

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class with a specified error message.
public FtpException ( string message ) : System
message string error message
return System

FtpException() public method

Initializes a new instance of the NSoft.NFramework.Networks.Ftp.FtpException class with a specified error message and a reference to the inner exception that is the cause of this exception
public FtpException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception.
innerException System.Exception /// The exception that is the cause of the current exception. /// If the innerException parameter is not a null reference, /// the current exception is raised in a catch block that handles the inner exception. ///
return System