Exemplo n.º 1
0
 internal void ListenerFailedNotify(DccListener serv, Exception ex)
 {
     if (ListenerFailed != null)
     {
         ListenerFailed(serv, ex);
     }
 }
Exemplo n.º 2
0
 internal void ListenerTimeoutNotify(DccListener listener)
 {
     if (ListenerTimeout != null)
     {
         ListenerTimeout(listener);
     }
 }
Exemplo n.º 3
0
 internal DccChatClient(Dcc dcc, IrcUser user, TimeSpan timeout, int port)
     : base(dcc, user)
 {
     m_listener = new DccListener(this, timeout, port);
 }
Exemplo n.º 4
0
 public DccSendClient(Dcc dcc, IrcUser user, FileInfo file, TimeSpan timeout, int port) : base(dcc, user, file, 0, file.Length)
 {
     m_listener = new DccListener(this, timeout, port);
 }
Exemplo n.º 5
0
 internal void ListenerTimeoutNotify(DccListener listener)
 {
     if (ListenerTimeout != null)
         ListenerTimeout(listener);
 }
Exemplo n.º 6
0
 internal void ListenerFailedNotify(DccListener serv, Exception ex)
 {
     if (ListenerFailed != null)
         ListenerFailed(serv, ex);
 }
Exemplo n.º 7
0
 internal DccChatClient(Dcc dcc, IrcUser user, TimeSpan timeout, int port) : base(dcc, user)
 {
     m_listener = new DccListener(this, timeout, port);
 }
Exemplo n.º 8
0
 public DccSendClient(Dcc dcc, IrcUser user, FileInfo file, TimeSpan timeout, int port)
     : base(dcc, user, file, 0, file.Length)
 {
     m_listener = new DccListener(this, timeout, port);
 }