Thresher 1.2 Class Documentation

ListEventHandler Delegate

The response to a List request.

[Visual Basic]
Public Delegate Sub ListEventHandler( _
   ByVal channel As String, _
   ByVal visibleNickCount As Integer, _
   ByVal topic As String, _
   ByVal last As Boolean _
)
[C#]
public delegate void ListEventHandler(
   string channel,
   int visibleNickCount,
   string topic,
   bool last
);

Parameters

channel
The channel name.
visibleNickCount
The number of visible users on that channel.
topic
The channel's topic.
last
True if this is the last reply.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnList