Thresher 1.2 Class Documentation

PingEventHandler Delegate

Called when a server sends a keep-alive Ping.

[Visual Basic]
Public Delegate Sub PingEventHandler( _
   ByVal message As String _
)
[C#]
public delegate void PingEventHandler(
   string message
);

Parameters

message
The message that the IRC server wants echoed back to it.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnPing