Esempio n. 1
0
        private void OnTwitchChannelList(object sender, IrcChannelListReceivedEventArgs e)
        {

        }
Esempio n. 2
0
 /// <summary>
 /// Raises the <see cref="ChannelListReceived"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IrcChannelListReceivedEventArgs"/> instance containing the event data.
 /// </param>
 protected virtual void OnChannelListReceived(IrcChannelListReceivedEventArgs e)
 {
     var handler = this.ChannelListReceived;
     if (handler != null)
         handler(this, e);
 }