从Hashlist中检索TcpClient

时间:2012-04-29 17:43:25

标签: c# tcpclient

我正在用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()

1 个答案:

答案 0 :(得分:1)

这应该给tou TcpClient:

 clientsList[dataFromClient]