Thresher 1.2 Class Documentation

WhoEventHandler Delegate

The response to a Who request.

[Visual Basic]
Public Delegate Sub WhoEventHandler( _
   ByVal user As UserInfo, _
   ByVal channel As String, _
   ByVal ircServer As String, _
   ByVal mask As String, _
   ByVal hopCount As Integer, _
   ByVal realName As String, _
   ByVal last As Boolean _
)
[C#]
public delegate void WhoEventHandler(
   UserInfo user,
   string channel,
   string ircServer,
   string mask,
   int hopCount,
   string realName,
   bool last
);

Parameters

user
The subject of the query
channel
The channel the user is on
ircServer
The name of the user's IRC server
mask
The user's mode mask
hopCount
Number of network hops to the user
realName
The user's real name
last
True if this is the last response

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnWho