Inheritance: DccEventArgs
 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);
 }