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

NoticeNotify() private method

private NoticeNotify ( IrcUser user, IrcChannel chan, Squishy.Network.StringStream text ) : void
user IrcUser
chan IrcChannel
text Squishy.Network.StringStream
return void
        internal void NoticeNotify(IrcUser user, IrcChannel chan, StringStream text)
        {
            if (chan != null)
                chan.NoticeReceivedNotify(user, text);
            OnNotice(user, chan, text);
            if (TriggersCommand(user, chan, text))
            {
                m_CommandHandler.ReactTo(new NoticeCmdTrigger(text, user, chan));
            }
        }