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

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

Mary-Kate Olsen
Mary-Kate Olsen原创
2025-01-03 10:34:40550浏览

How to Check TCP Port Availability in C#?

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

使用 TcpClient 或任何套接字建立连接时,验证所需端口的可用性是有益的您机器上的端口。解决方法如下:

要检查 C# 中 TCP 端口的可用性,您可以在 System.Net.NetworkInformation 命名空间中利用 IPGlobalProperties 对象及其 GetActiveTcpConnections() 方法。此方法提供了一种可靠的方法来评估系统上当前的 TCP 连接。

以下代码演示了如何实现此检查:

int port = 456; // Replace with the port you want to check
bool isAvailable = true;

// Get the current TCP connections
IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties();
TcpConnectionInformation[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpConnections();

// Check if the specified port is already in use
foreach (TcpConnectionInformation tcpi in tcpConnInfoArray)
{
    if (tcpi.LocalEndPoint.Port == port)
    {
        isAvailable = false;
        break;
    }
}

// Proceed further if the port is available
if (isAvailable)
{
    // Your code for utilizing the port
}

以上是如何在 C# 中检查 TCP 端口可用性?的详细内容。更多信息请关注PHP中文网其他相关文章!

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