Provides data for events that specify information about a server.
Inheritance: System.EventArgs
Esempio n. 1
0
 /// <summary>
 /// Raises the <see cref="ServerBounce"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IrcServerInfoEventArgs"/> instance containing the event data.</param>
 protected virtual void OnServerBounce(IrcServerInfoEventArgs e)
 {
     var handler = this.ServerBounce;
     if (handler != null)
         handler(this, e);
 }
Esempio n. 2
0
 private void Client_ServerBounce(object sender, IrcServerInfoEventArgs e)
 {
 }