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

如何在 C# 中验证 TCP 端口可用性?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-31 07:01:10425浏览

How to Verify TCP Port Availability in C#?

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

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