在 C# 中验证 TCP 端口可用性
当尝试在 C# 中使用 TcpClient 或连接到套接字时,确保在继续之前,您计算机上的预期端口可用。以下是执行此基本检查的方法:
由于 TCP 端口是使用 TcpClient 时的重点,因此请考虑利用 System.Net.NetworkInformation 命名空间。 IPGlobalProperties 对象提供对 TcpConnectionInformation 对象数组的访问,这些对象显示端点 IP 和端口信息。
检查此代码示例:
int port = 456; // Replace with your target port bool isAvailable = true; // Acquire system TCP connection details IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); TcpConnectionInformation[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpConnections(); // Inspect connections for port occupancy foreach (TcpConnectionInformation tcpi in tcpConnInfoArray) { if (tcpi.LocalEndPoint.Port == port) { isAvailable = false; break; } } // Proceed with your connection logic only if the port is available if (isAvailable) { // Perform necessary actions }
通过执行以下步骤,您可以有效地检查可用性您机器上的特定 TCP 端口,确保建立可靠的连接。
以上是如何在 C# 中验证 TCP 端口可用性?的详细内容。更多信息请关注PHP中文网其他相关文章!