C# Class IrcShark.Chatting.Irc.QuitReceivedEventArgs

The QuitReceivedEventArgs belongs to the IrcClient.QuitReceivedEventHandler and the IrcClient.QuitReceived event.
Inheritance: IrcEventArgs
Mostrar archivo Open project: hapm/IrcShark Class Usage Examples

Public Methods

Method Description
QuitReceivedEventArgs ( IrcLine line ) : System

Initializes a new instance of the QuitReceivedEventArgs class.

QuitReceivedEventArgs ( UserInfo user, string message ) : System

Initializes a new instance of the QuitReceivedEventArgs class.

Method Details

QuitReceivedEventArgs() public method

Initializes a new instance of the QuitReceivedEventArgs class.
public QuitReceivedEventArgs ( IrcLine line ) : System
line IrcLine The line containing the quit command.
return System

QuitReceivedEventArgs() public method

Initializes a new instance of the QuitReceivedEventArgs class.
public QuitReceivedEventArgs ( UserInfo user, string message ) : System
user UserInfo The user, that quited.
message string The message the user sent when quitting.
return System