Thresher 1.2 Class Documentation

TopicEventHandler Delegate

A channel's topic has changed.

[Visual Basic]
Public Delegate Sub TopicEventHandler( _
   ByVal user As UserInfo, _
   ByVal channel As String, _
   ByVal newTopic As String _
)
[C#]
public delegate void TopicEventHandler(
   UserInfo user,
   string channel,
   string newTopic
);

Parameters

user
Who changed the topic.
channel
Which channel had its topic changed.
newTopic
The new topic.

Requirements

Namespace: Sharkbite.Irc

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

See Also

Sharkbite.Irc Namespace | OnTopicChanged