Squishy.Irc.IrcClient.AuthNotify C# (CSharp) 메소드

AuthNotify() 개인적인 메소드

private AuthNotify ( IrcUser user ) : void
user IrcUser
리턴 void
        internal void AuthNotify(IrcUser user)
        {
            var evt = AuthResolved;
            if (evt != null)
            {
                evt(user);
            }
        }