Thresher 1.2 Class Documentation

InviteEventHandler Delegate

The user has been invited to a channel.

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

Parameters

user
Who sent the invite.
channel
The target channel.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnInvite