Thresher 1.2 Class Documentation

ChannelListEventHandler Delegate

Response to a RequestChannelList command.

[Visual Basic]
Public Delegate Sub ChannelListEventHandler( _
   ByVal channel As String, _
   ByVal mode As ChannelMode, _
   ByVal item As String, _
   ByVal who As UserInfo, _
   ByVal whenSet As Long, _
   ByVal last As Boolean _
)
[C#]
public delegate void ChannelListEventHandler(
   string channel,
   ChannelMode mode,
   string item,
   UserInfo who,
   long whenSet,
   bool last
);

Parameters

channel
The channel name.
mode
What type is this a list? For example bans, invitation masks, etc..
item
A mask or nick (in the case of ChannelCreator).
who
Who set the mask (not for ChannelCreator).
whenSet
When was it set (not for ChannelCreator).
last
Is this the last item. If its the last then the item paramter will be empty unless the mode is ChannelCreator.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnChannelList