我正在用C#开发一个用于管理的开放telnet端口的聊天程序。这笔交易是每次客户端连接到服务器时,服务器都会将他的昵称和套接字存储在一个哈希表中。有没有办法检索TcpClient,以便我可以TcpClient.Disconnect()
或Close()
?
我的代码:
// When the client enters the server
clientsList.Add(dataFromClient, clientSocket);
// This will add the nick and tcpclient to the Hashtable
有没有办法将其检索回来,以便我可以Close()
或disconnect()
?
答案 0 :(得分:1)
这应该给tou TcpClient:
clientsList[dataFromClient]