IrcDotNet.IrcUser.OnInviteReceived C# (CSharp) Method

OnInviteReceived() protected method

Raises the InviteReceived event.
protected OnInviteReceived ( IrcChannelInvitationEventArgs e ) : void
e IrcChannelInvitationEventArgs The instance containing the event data.
return void
        protected virtual void OnInviteReceived(IrcChannelInvitationEventArgs e)
        {
            var handler = InviteReceived;
            if (handler != null)
                handler(this, e);
        }