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

ModeAddedNotify() private method

private ModeAddedNotify ( IrcUser user, IrcChannel chan, string mode, string param ) : void
user IrcUser
chan IrcChannel
mode string
param string
return void
        internal void ModeAddedNotify(IrcUser user, IrcChannel chan, string mode, string param)
        {
            chan.ModeAddedNotify(user, mode, param);
            OnModeAdded(user, chan, mode, param);
        }