Provides data for events that specify a comment.
Inheritance: System.EventArgs
Beispiel #1
0
 private void UserListUpdate(object sender, IrcNameEventArgs e)
 {
 }
Beispiel #2
0
 /// <summary>
 /// Raises the <see cref="WhoReplyReceived"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IrcNameEventArgs"/> instance containing the event data.</param>
 protected virtual void OnWhoReplyReceived(IrcNameEventArgs e)
 {
     var handler = this.WhoReplyReceived;
     if (handler != null)
         handler(this, e);
 }
Beispiel #3
0
 private void Client_WhoReplyReceived(object sender, IrcNameEventArgs e)
 {
 }