Beispiel #1
0
        /// <summary>
        /// Raises the <see cref="UserInvited"/> event.
        /// </summary>
        /// <param name="e">The <see cref="IrcUserEventArgs"/> instance containing the event data.</param>
        protected virtual void OnUserInvited(IrcUserEventArgs e)
        {
            var handler = this.UserInvited;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Beispiel #2
0
 /// <summary>
 /// Raises the <see cref="WhoWasReplyReceived"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IrcUserEventArgs"/> instance containing the event data.</param>
 protected virtual void OnWhoWasReplyReceived(IrcUserEventArgs e)
 {
     var handler = this.WhoWasReplyReceived;
     if (handler != null)
         handler(this, e);
 }
Beispiel #3
0
 /// <summary>
 /// Raises the <see cref="UserInvited"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IrcUserEventArgs"/> instance containing the event data.</param>
 protected virtual void OnUserInvited(IrcUserEventArgs e)
 {
     var handler = this.UserInvited;
     if (handler != null)
         handler(this, e);
 }