Provides data for the IrcClient.ServerLinksListReceived event.
Inheritance: System.EventArgs
Ejemplo n.º 1
0
 /// <summary>
 /// Raises the <see cref="ServerLinksListReceived"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IrcServerLinksListReceivedEventArgs"/> instance containing the event data.
 /// </param>
 protected virtual void OnServerLinksListReceived(IrcServerLinksListReceivedEventArgs e)
 {
     var handler = this.ServerLinksListReceived;
     if (handler != null)
         handler(this, e);
 }
Ejemplo n.º 2
0
 private void Client_ServerLinksListReceived(object sender, IrcServerLinksListReceivedEventArgs e)
 {
 }