Exemple #1
0
 internal void HandleOnDccSendStopEvent(object sender, DccEventArgs e)
 {
     if (OnDccSendStopEvent != null)
     {
         OnDccSendStopEvent(this, e);
     }
 }
Exemple #2
0
 internal void HandleOnDccChatStartEvent(object sender, DccEventArgs e)
 {
     if (OnDccChatStartEvent != null)
     {
         OnDccChatStartEvent(this, e);
     }
 }
 public void PluginsOnDccSendStopEvent(object sender, DccEventArgs e)
 {
     OnDccSendStopEvent(this, e);
 }
 public void PluginsOnDccChatStartEvent(object sender, DccEventArgs e)
 {
     OnDccChatStartEvent(this, e);
 }