获取操作系统已用的端口号

来源:互联网 发布:windows键盘钩子程序 编辑:程序博客网 时间:2024/05/12 23:48
 #region 获取操作系统已用的端口号
/// <summary>
/// 获取操作系统已用的端口号
/// </summary>
/// <returns></returns>
public IList PortIsUsed()
{
    //获取本地计算机的网络连接和通信统计数据的信息
    IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties();


    //返回本地计算机上的所有Tcp监听程序
    IPEndPoint[] ipsTCP = ipGlobalProperties.GetActiveTcpListeners();


    //返回本地计算机上的所有UDP监听程序
    IPEndPoint[] ipsUDP = ipGlobalProperties.GetActiveUdpListeners();


    //返回本地计算机上的Internet协议版本4(IPV4 传输控制协议(TCP)连接的信息。
    TcpConnectionInformation[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpConnections();


    IList allPorts = new ArrayList();
    foreach (IPEndPoint ep in ipsTCP)
    {
        allPorts.Add(ep.Port);
    }
    foreach (IPEndPoint ep in ipsUDP)
    {
        allPorts.Add(ep.Port);
    }
    foreach (TcpConnectionInformation conn in tcpConnInfoArray)
    {
        allPorts.Add(conn.LocalEndPoint.Port);
    }


    return allPorts;
}
#endregion 
0 0
原创粉丝点击