C# Class IrcDotNet.Ctcp.CtcpMessageEventArgs

Provides data for events that are raised when a CTCP message or notice is sent or received.
Inheritance: System.EventArgs
Mostra file Open project: IrcDotNet/IrcDotNet Class Usage Examples

Public Methods

Method Description
CtcpMessageEventArgs ( IrcUser source, IList targets, string text ) : System

Initializes a new instance of the CtcpMessageEventArgs class.

Method Details

CtcpMessageEventArgs() public method

Initializes a new instance of the CtcpMessageEventArgs class.
is . is .
public CtcpMessageEventArgs ( IrcUser source, IList targets, string text ) : System
source IrcUser The source of the message.
targets IList A list of the targets of the message.
text string The text of the message.
return System