Squishy.Irc.IrcClient.KickNotify C# (CSharp) Метод

KickNotify() приватный Метод

private KickNotify ( IrcUser user, IrcChannel chan, IrcUser target, string reason ) : void
user IrcUser
chan IrcChannel
target IrcUser
reason string
Результат void
        internal void KickNotify(IrcUser user, IrcChannel chan, IrcUser target, string reason)
        {
            OnKick(user, chan, target, reason);
            chan.UserKickedNotify(user, target, reason);
            target.DeleteChannel(chan.Name);
            CheckUserKnown(target);
        }