Provides data for the IrcClient.ServerStatsReceived event.
Inheritance: System.EventArgs
Esempio n. 1
0
 /// <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);
 }
Esempio n. 2
0
 private void Client_ServerStatsReceived(object sender, IrcServerStatsReceivedEventArgs e)
 {
 }