Thresher 1.2 Class Documentation

WhowasEventHandler Delegate

The response to a Whowas request.

[Visual Basic]
Public Delegate Sub WhowasEventHandler( _
   ByVal user As UserInfo, _
   ByVal realName As String, _
   ByVal last As Boolean _
)
[C#]
public delegate void WhowasEventHandler(
   UserInfo user,
   string realName,
   bool last
);

Parameters

user
Information on the user.
realName
The user's real name.
last
True if this is the final reply.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnWhowas