从哈希列表中检索 TcpClient
本文关键字:检索 TcpClient 列表 哈希 | 更新日期: 2023-09-27 18:32:44
我正在用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()
?
这应该给 tou TcpClient:
clientsList[dataFromClient]