Thresher 1.2 Class Documentation

KillEventHandler Delegate

Someone was disconnected from the server via a Kill.

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

Parameters

user
Which Operator send teh Kill command
nick
Who was Killed.
reason
Why the nick was disconnected.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnKill