首页 >后端开发 >C++ >如何在 C# 中检查 TCP 端口可用性?

如何在 C# 中检查 TCP 端口可用性?

Barbara Streisand
Barbara Streisand原创
2024-12-30 20:04:10270浏览

How to Check for TCP Port Availability in C#?

在 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn