Thresher 1.2 Class Documentation

JoinEventHandler Delegate

Someone has joined a channel.

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

Parameters

user
Who joined.
channel
The channel name.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnJoin