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

KickNotify() private method

private KickNotify ( IrcUser user, IrcChannel chan, IrcUser target, string reason ) : void
user IrcUser
chan IrcChannel
target IrcUser
reason string
return 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);
        }