Thresher 1.2 Class Documentation

QuitEventHandler Delegate

Someone has quit IRC.

[Visual Basic]
Public Delegate Sub QuitEventHandler( _
   ByVal user As UserInfo, _
   ByVal reason As String _
)
[C#]
public delegate void QuitEventHandler(
   UserInfo user,
   string reason
);

Parameters

user
The user who quit.
reason
A goodbye message.

Requirements

Namespace: Sharkbite.Irc

Assembly: Sharkbite.Thresher (in Sharkbite.Thresher.dll)

See Also

Sharkbite.Irc Namespace | OnQuit