Thresher 1.2 Class Documentation

LinksEventHandler Delegate

The response to a Links request.

[Visual Basic]
Public Delegate Sub LinksEventHandler( _
   ByVal mask As String, _
   ByVal hostname As String, _
   ByVal hopCount As Integer, _
   ByVal serverInfo As String, _
   ByVal done As Boolean _
)
[C#]
public delegate void LinksEventHandler(
   string mask,
   string hostname,
   int hopCount,
   string serverInfo,
   bool done
);

Parameters

mask
The hostname as it appears in IRC queries.
hostname
The actual hostname.
hopCount
The number of hops from this server to the target server.
serverInfo
Information about the server, usually the network name.
done
True if this is the last message in the series. If it is the last it will not contain any server information.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnLinks