RemoveChatClient() private méthode

private RemoveChatClient ( DccChatClient client ) : void
client DccChatClient
Résultat void
 private void OnConnnect(IAsyncResult ar)
 {
     if (m_closed)
     {
         return;
     }
     try
     {
         m_sock.EndConnect(ar);
     }
     catch (Exception e)
     {
         Dcc.ChatFailedNotify(this, e);
         Dcc.RemoveChatClient(this);
         return;
     }
     AfterConnect();
 }
 protected override void Cleanup()
 {
     Dcc.ChatClosedNotify(this);
     Dcc.RemoveChatClient(this);
 }