Thresher 1.2 Class Documentation

StatsEventHandler Delegate

The response to a Stats request.

[Visual Basic]
Public Delegate Sub StatsEventHandler( _
   ByVal queryType As StatsQuery, _
   ByVal message As String, _
   ByVal done As Boolean _
)
[C#]
public delegate void StatsEventHandler(
   StatsQuery queryType,
   string message,
   bool done
);

Parameters

queryType
What kind of query this is in response to.
message
The actual response.
done
True if this is the last message in the series.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnStats