Thresher 1.2 Class Documentation

ActionEventHandler Delegate

An action message was sent to a channel.

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

Parameters

user
The user who expresses the action.
channel
The target channel.
description
An action.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnAction