internal void HandleOnDccSendSentBlockEvent(object sender, DccSendEventArgs e)
 {
     if (OnDccSendSentBlockEvent != null)
         OnDccSendSentBlockEvent(this, e);
 }
Пример #2
0
 internal void DccSendSentBlockEvent(DccSendEventArgs e)
 {
     if (OnDccSendSentBlockEvent != null)
     {
         OnDccSendSentBlockEvent(this, e);
     }
 }
 public void PluginsOnDccSendSentBlockEvent(object sender, DccSendEventArgs e)
 {
     OnDccSendSentBlockEvent(this, e);
 }
Пример #4
0
 public void DccSendReceiveBlockEvent(DccSendEventArgs e)
 {
     if (OnDccSendReceiveBlockEvent != null)
     {
         OnDccSendReceiveBlockEvent(this, e);
     }
 }
Пример #5
0
 protected virtual void DccSendSentBlockEvent(DccSendEventArgs e)
 {
     if (OnDccSendSentBlockEvent != null)
     {
         OnDccSendSentBlockEvent(this, e);
     }
     Irc.DccSendSentBlockEvent(e);
 }