[This is preliminary documentation and is subject to change.]

The handler for the IrcClient.QuitReceived event.

Namespace:  IrcShark.Chatting.Irc
Assembly:  IrcShark.Chatting.Irc (in IrcShark.Chatting.Irc.dll) Version: 0.0.3690.27108

Syntax

C#
public delegate void QuitReceivedEventHandler(
	Object sender,
	QuitReceivedEventArgs e
)
Visual Basic (Declaration)
Public Delegate Sub QuitReceivedEventHandler ( _
	sender As Object, _
	e As QuitReceivedEventArgs _
)
Visual C++
public delegate void QuitReceivedEventHandler(
	Object^ sender, 
	QuitReceivedEventArgs^ e
)

Parameters

sender
Type: System..::.Object
The object that raised the event.
e
Type: IrcShark.Chatting.Irc..::.QuitReceivedEventArgs
The event args for this event.

See Also