Squishy.Irc.IrcClient.TopicNotify C# (CSharp) Method

TopicNotify() private method

private TopicNotify ( IrcUser user, IrcChannel chan, string text, bool initial ) : void
user IrcUser
chan IrcChannel
text string
initial bool
return void
        internal void TopicNotify(IrcUser user, IrcChannel chan, string text, bool initial)
        {
            chan.TopicChangedNotify(user, text, initial);
            OnTopic(user, chan, text, initial);
        }