Provides data for events that specify information about a server.
Наследование: System.EventArgs
Пример #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);
 }
Пример #2
0
 private void Client_ServerBounce(object sender, IrcServerInfoEventArgs e)
 {
 }