Thresher 1.2 Class Documentation

KickEventHandler Delegate

Someone has been kicked from a channel.

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

Parameters

user
Who did the kicking.
channel
The channel that the person was kicked from.
kickee
Who was kicked.
reason
Why the person was kicked.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnKick