IrcDotNet.IrcClient.SendMessageTopic C# (CSharp) Method

SendMessageTopic() protected method

Sends an update or request for the topic of the specified channel.
protected SendMessageTopic ( string channel, string topic = null ) : void
channel string The name of the channel whose topic to change.
topic string The new topic to set, or to request the current topic.
return void
        protected void SendMessageTopic(string channel, string topic = null)
        {
            WriteMessage(null, "topic", channel, topic);
        }
IrcClient