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

OnInviteReceived() 보호된 메소드

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