IrcDotNet.IrcUser.OnQuit C# (CSharp) 메소드

OnQuit() 보호된 메소드

Raises the Quit event.
protected OnQuit ( IrcCommentEventArgs e ) : void
e IrcCommentEventArgs The instance containing the event data.
리턴 void
        protected virtual void OnQuit(IrcCommentEventArgs e)
        {
            var handler = Quit;
            if (handler != null)
                handler(this, e);
        }