C# Class MailKit.Net.Imap.ImapCommandException

Inheritance: CommandException
Mostrar archivo Open project: jstedfast/MailKit Class Usage Examples

Public Methods

Method Description
ImapCommandException ( ImapCommandResponse response, string responseText ) : System

Initializes a new instance of the MailKit.Net.Imap.ImapCommandException class.

Creates a new ImapCommandException.

ImapCommandException ( ImapCommandResponse response, string responseText, string message ) : System

Initializes a new instance of the MailKit.Net.Imap.ImapCommandException class.

Creates a new ImapCommandException.

ImapCommandException ( ImapCommandResponse response, string responseText, string message, Exception innerException ) : System

Initializes a new instance of the MailKit.Net.Imap.ImapCommandException class.

Creates a new ImapCommandException.

Private Methods

Method Description
Create ( string command, ImapCommand ic ) : ImapCommandException

Create a new ImapCommandException based on the specified command name and ImapCommand state.

Create a new ImapCommandException based on the specified command name and ImapCommand state.

GetObjectData ( SerializationInfo info, StreamingContext context ) : void
ImapCommandException ( SerializationInfo info, StreamingContext context ) : System

Method Details

ImapCommandException() public method

Initializes a new instance of the MailKit.Net.Imap.ImapCommandException class.
Creates a new ImapCommandException.
public ImapCommandException ( ImapCommandResponse response, string responseText ) : System
response ImapCommandResponse The IMAP command response.
responseText string The human-readable response text.
return System

ImapCommandException() public method

Initializes a new instance of the MailKit.Net.Imap.ImapCommandException class.
Creates a new ImapCommandException.
public ImapCommandException ( ImapCommandResponse response, string responseText, string message ) : System
response ImapCommandResponse The IMAP command response.
responseText string The human-readable response text.
message string The error message.
return System

ImapCommandException() public method

Initializes a new instance of the MailKit.Net.Imap.ImapCommandException class.
Creates a new ImapCommandException.
public ImapCommandException ( ImapCommandResponse response, string responseText, string message, Exception innerException ) : System
response ImapCommandResponse The IMAP command response.
responseText string The human-readable response text.
message string The error message.
innerException System.Exception The inner exception.
return System