C#获取已被使用的网络端点以及判断端口是否已被使用

using System.Net;
using System.Net.NetworkInformation;
using System.Collections.Generic;
using System.Collections;

public class OperateIPEndPoint
{
   /// <summary>
   /// 获取本机已被使用的网络端点
   /// </summary>
   public IList<IPEndPoint> GetUsedIPEndPoint()
   {
      //获取一个对象,该对象提供有关本地计算机的网络连接和通信统计数据的信息。
      IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties();

      //获取有关本地计算机上的 Internet 协议版本 4 (IPV4) 传输控制协议 (TCP) 侦听器的终结点信息。
      IPEndPoint[] ipEndPointTCP = ipGlobalProperties.GetActiveTcpListeners();

      //获取有关本地计算机上的 Internet 协议版本 4 (IPv4) 用户数据报协议 (UDP) 侦听器的信息。
      IPEndPoint[] ipEndPointUDP = ipGlobalProperties.GetActiveUdpListeners();

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

      IList<IPEndPoint> allIPEndPoint = new List<IPEndPoint>();
      foreach (IPEndPoint iep in ipEndPointTCP) allIPEndPoint.Add(iep);
      foreach (IPEndPoint iep in ipEndPointUDP) allIPEndPoint.Add(iep);
      foreach (TcpConnectionInformation tci in tcpConnectionInformation) allIPEndPoint.Add(tci.LocalEndPoint);

      return allIPEndPoint;
   }

   /// <summary>
   /// 判断指定的网络端点(只判断端口)是否被使用
   /// </summary>
   public bool IsUsedIPEndPoint(int port)
   {
      foreach (IPEndPoint iep in GetUsedIPEndPoint())
      {
         if (iep.Port == port)
         {
            return true;
         }
      }
      return false;
   }

   /// <summary>
   /// 判断指定的网络端点(判断IP和端口)是否被使用
   /// </summary>
   public bool IsUsedIPEndPoint(string ip, int port)
   {
      foreach (IPEndPoint iep in GetUsedIPEndPoint())
      {
         if (iep.Address.ToString() == ip && iep.Port == port)
         {
            return true;
         }
      }
      return false;
   }
}


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值