C# Class IrcShark.Chatting.Irc.JoinReceivedEventArgs

The JoinReceivedEventArgs belongs to the IrcClient.JoinReceivedEventHandler and the IrcClient.JoinReceived event.
Inheritance: IrcEventArgs
Mostrar archivo Open project: hapm/IrcShark Class Usage Examples

Public Methods

Method Description
JoinReceivedEventArgs ( IrcLine line ) : System

Initializes a new instance of the JoinReceivedEventArgs class.

JoinReceivedEventArgs ( string channelName, UserInfo joinedUser ) : System

Initializes a new instance of the JoinReceivedEventArgs class.

Method Details

JoinReceivedEventArgs() public method

Initializes a new instance of the JoinReceivedEventArgs class.
public JoinReceivedEventArgs ( IrcLine line ) : System
line IrcLine The line to create the event args from.
return System

JoinReceivedEventArgs() public method

Initializes a new instance of the JoinReceivedEventArgs class.
public JoinReceivedEventArgs ( string channelName, UserInfo joinedUser ) : System
channelName string The name of the joined channel.
joinedUser UserInfo The UserInfo for the joined user.
return System