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

ModeDeletedNotify() private method

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