Provides data for events that specify a comment.
상속: System.EventArgs
예제 #1
0
 private void UserListUpdate(object sender, IrcNameEventArgs e)
 {
 }
예제 #2
0
파일: IrcClient.cs 프로젝트: txdv/ircdotnet
 /// <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);
 }
예제 #3
0
파일: Command.cs 프로젝트: charla-n/BIRC
 private void Client_WhoReplyReceived(object sender, IrcNameEventArgs e)
 {
 }