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

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

Mary-Kate Olsen
发布: 2024-12-31 07:01:10
原创
420 人浏览过

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板