在 C# 中检查 TCP 端口可用性
使用 TcpClient 或其他基于套接字的协议建立连接时,确定特定端口是否可用至关重要端口在本地计算机上是空闲的。以下是在 C# 中实现的方法:
由于 TcpClient 专用于管理 TCP 端口,因此 System.Net.NetworkInformation 命名空间提供了用于端口可用性验证的强大工具。
利用 IPGlobalProperties 对象,您可以访问 TcpConnectionInformation 对象的数组。该数组中的每个条目都保存有关端点 IP 和端口的信息。通过迭代此数组,您可以检查所需的端口是否被占用:
int port = 456; // Specify your port here bool isAvailable = true; // Retrieve current system TCP connections IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); TcpConnectionInformation[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpConnections(); foreach (TcpConnectionInformation tcpi in tcpConnInfoArray) { if (tcpi.LocalEndPoint.Port == port) { isAvailable = false; break; } } // Proceed with your TcpClient operations if isAvailable is true
通过这种方法,您可以可靠地验证端口可用性并确保成功建立连接。
以上是如何在 C# 中检查 TCP 端口可用性?的详细内容。更多信息请关注PHP中文网其他相关文章!