Inheritance: System.EventArgs
 internal void HandleOnDccSendStopEvent(object sender, DccEventArgs e)
 {
     if (OnDccSendStopEvent != null)
         OnDccSendStopEvent(this, e);
 }
Example #2
0
 public void DccSendStopEvent(DccEventArgs e)
 {
     if (OnDccSendStopEvent != null)
     {
         OnDccSendStopEvent(this, e);
     }
 }
 internal void HandleOnDccChatStartEvent(object sender, DccEventArgs e)
 {
     if (OnDccChatStartEvent != null)
         OnDccChatStartEvent(this, e);
 }
Example #4
0
 public void DccChatStartEvent(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);
 }
Example #7
0
 protected virtual void DccSendStopEvent(DccEventArgs e)
 {
     if (OnDccSendStopEvent != null)
     {
         OnDccSendStopEvent(this, e);
     }
     Irc.DccSendStopEvent(e);
 }
Example #8
0
 protected virtual void DccChatStartEvent(DccEventArgs e)
 {
     if (OnDccChatStartEvent != null)
     {
         OnDccChatStartEvent(this, e);
     }
     Irc.DccChatStartEvent(e);
 }