IrcDotNet.IrcUser.OnIsAwayChanged C# (CSharp) Method

OnIsAwayChanged() protected method

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