Provides data for the IrcClient.ServerStatsReceived event.
Inheritance: System.EventArgs
コード例 #1
0
ファイル: IrcClient.cs プロジェクト: txdv/ircdotnet
 /// <summary>
 /// Raises the <see cref="ServerStatsReceived"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IrcServerStatsReceivedEventArgs"/> instance containing the event data.
 /// </param>
 protected virtual void OnServerStatsReceived(IrcServerStatsReceivedEventArgs e)
 {
     var handler = this.ServerStatsReceived;
     if (handler != null)
         handler(this, e);
 }
コード例 #2
0
ファイル: Command.cs プロジェクト: charla-n/BIRC
 private void Client_ServerStatsReceived(object sender, IrcServerStatsReceivedEventArgs e)
 {
 }