예제 #1
0
 public void DccChatStartEvent(DccEventArgs e)
 {
     if (OnDccChatStartEvent != null)
     {
         OnDccChatStartEvent(this, e);
     }
 }
예제 #2
0
 public void DccSendStopEvent(DccEventArgs e)
 {
     if (OnDccSendStopEvent != null)
     {
         OnDccSendStopEvent(this, e);
     }
 }
예제 #3
0
 protected virtual void DccSendStopEvent(DccEventArgs e)
 {
     if (OnDccSendStopEvent != null)
     {
         OnDccSendStopEvent(this, e);
     }
     Irc.DccSendStopEvent(e);
 }
예제 #4
0
 protected virtual void DccChatRequestEvent(DccEventArgs e)
 {
     if (OnDccChatRequestEvent != null)
     {
         OnDccChatRequestEvent(this, e);
     }
     Irc.DccChatRequestEvent(e);
 }
예제 #5
0
 protected virtual void DccSendStopEvent(DccEventArgs e)
 {
     if (OnDccSendStopEvent!=null) {OnDccSendStopEvent(this, e); }
     Irc.DccSendStopEvent(e);
 }
예제 #6
0
 protected virtual void DccChatStartEvent(DccEventArgs e)
 {
     if (OnDccChatStartEvent!=null) {OnDccChatStartEvent(this, e); }
       Irc.DccChatStartEvent(e);
 }
예제 #7
0
 protected virtual void DccSendStartEvent(DccEventArgs e)
 {
     OnDccSendStartEvent?.Invoke(this, e); Irc.DccSendStartEvent(e);
 }
예제 #8
0
 protected virtual void DccChatRequestEvent(DccEventArgs e)
 {
     OnDccChatRequestEvent?.Invoke(this, e); Irc.DccChatRequestEvent(e);
 }
예제 #9
0
 public void DccSendStopEvent(DccEventArgs e)
 {
     if (OnDccSendStopEvent!=null) {OnDccSendStopEvent(this, e); }
 }
예제 #10
0
 public void DccChatStartEvent(DccEventArgs e)
 {
     if (OnDccChatStartEvent!=null) {OnDccChatStartEvent(this, e); }
 }
예제 #11
0
 public void DccSendStartEvent(DccEventArgs e) => OnDccSendStartEvent?.Invoke(this, e);
예제 #12
0
 public void DccChatRequestEvent(DccEventArgs e) => OnDccChatRequestEvent?.Invoke(this, e);
예제 #13
0
 public void DccChatStopEvent(DccEventArgs e) => OnDccChatStopEvent?.Invoke(this, e);