Provides data for events that specify a comment.
Inheritance: System.EventArgs
コード例 #1
0
ファイル: BotDeathmic.cs プロジェクト: Kolpa/DeathmicChatbot
 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)
 {
 }