C# Class IrcShark.Chatting.Irc.ErrorEventArgs

The ErrorEventArgs belongs to the IrcClient.ErrorEventHandler and the IrcClient.Error event.
Inheritance: IrcEventArgs
ファイルを表示 Open project: hapm/IrcShark

Public Methods

Method Description
ErrorEventArgs ( IrcClient client, string msg ) : System

Initializes a new instance of the ErrorEventArgs class.

ErrorEventArgs ( IrcClient client, string msg, Exception exception ) : System

Initializes a new instance of the ErrorEventArgs class.

Method Details

ErrorEventArgs() public method

Initializes a new instance of the ErrorEventArgs class.
public ErrorEventArgs ( IrcClient client, string msg ) : System
client IrcClient The client, the error happens on.
msg string The related error message.
return System

ErrorEventArgs() public method

Initializes a new instance of the ErrorEventArgs class.
public ErrorEventArgs ( IrcClient client, string msg, Exception exception ) : System
client IrcClient The client, the error happens on.
msg string The related error message.
exception System.Exception The inner exception, that caused the error.
return System