Example #1
0
 protected virtual void HandleChannelNotice(object sender, IrcEventArgs e)
 {
     if (!SyncedChannels.Contains(e.Data.Channel))
     {
         return;
     }
     OnChannelNotice(new ChannelMessageEventArgs(e.Data));
 }
Example #2
0
 protected virtual void HandleChannelAction(object sender, ActionEventArgs e)
 {
     if (!SyncedChannels.Contains(e.Data.Channel))
     {
         return;
     }
     OnChannelAction(new ChannelActionEventArgs(e));
 }