IrcDotNet.IrcUser.OnNickNameChanged C# (CSharp) Method

OnNickNameChanged() protected method

Raises the NickNameChanged event.
protected OnNickNameChanged ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
return void
        protected virtual void OnNickNameChanged(EventArgs e)
        {
            var handler = NickNameChanged;
            if (handler != null)
                handler(this, e);
        }