C# Class IrcShark.Chatting.Irc.PartReceivedEventArgs

The PartReceivedEventArgs belongs to the IrcClient.PartReceivedEventHandler and the IrcClient.PartReceived event.
Inheritance: IrcEventArgs
Mostrar archivo Open project: hapm/IrcShark Class Usage Examples

Public Methods

Method Description
PartReceivedEventArgs ( IrcLine line ) : System

Initializes a new instance of the PartReceivedEventArgs class.

PartReceivedEventArgs ( string channelName, UserInfo partedUser ) : System

Initializes a new instance of the PartReceivedEventArgs class.

Method Details

PartReceivedEventArgs() public method

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

PartReceivedEventArgs() public method

Initializes a new instance of the PartReceivedEventArgs class.
public PartReceivedEventArgs ( string channelName, UserInfo partedUser ) : System
channelName string The name of the channel.
partedUser UserInfo The user, who parted.
return System