翼度科技»论坛 编程开发 .net 查看内容

C# 读取网络上下行(不要使用性能计数器的方式)

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
C# 读取网络上下行有多种方式,其中有一种是使用System.Net.NetworkInformation命名空间中的NetworkInterface类和PerformanceCounter类,该方式其实读的是windows系统的性能计数器中的Network Interface类别的数据。
方式如下:
  1. NetworkInterface networkInterface = NetworkInterface.GetAllNetworkInterfaces()
  2.             .FirstOrDefault(i => i.Name.Equals(interfaceName, StringComparison.OrdinalIgnoreCase));
  3.         if (networkInterface == null)
  4.         {
  5.             Console.WriteLine("Network interface not found.");
  6.             return;
  7.         }
  8.         PerformanceCounter downloadCounter = new PerformanceCounter("Network Interface", "Bytes Received/sec", networkInterface.Description);
  9.         PerformanceCounter uploadCounter = new PerformanceCounter("Network Interface", "Bytes Sent/sec", networkInterface.Description);
  10.         while (true)
  11.         {
  12.             float downloadSpeed = downloadCounter.NextValue();
  13.             float uploadSpeed = uploadCounter.NextValue();
  14.             Console.WriteLine($"Download Speed: {downloadSpeed} bytes/sec");
  15.             Console.WriteLine($"Upload Speed: {uploadSpeed} bytes/sec");
  16.             Thread.Sleep(1000); // 每秒更新一次网速
  17.         }
复制代码
但是使用性能计数器有时候会抛异常:
  1. 异常: System.InvalidOperationException: 类别不存在。
  2.    在 System.Diagnostics.PerformanceCounterLib.CounterExists(String machine, String category, String counter)
  3.    在 System.Diagnostics.PerformanceCounter.InitializeImpl()
  4.    在 System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName, Boolean readOnly)
  5.    在 System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName)
复制代码
打开“性能监视器”,点击“性能”,报错

 使用网上的各种处理都没办法恢复,所以建议使用其它方式获取网络上下行。
下面是使用WMI (Windows Management Instrumentation)的方式(需要使用管理员身份运行):
  1. string interfaceName = "Ethernet"; // 指定网络接口的名称
  2.         ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PerfFormattedData_Tcpip_NetworkInterface");
  3.         ManagementObjectCollection objects = searcher.Get();
  4.         foreach (ManagementObject obj in objects)
  5.         {
  6.             string name = obj["Name"].ToString();
  7.             if (name.Equals(interfaceName, StringComparison.OrdinalIgnoreCase))
  8.             {
  9.                 ulong bytesReceived = Convert.ToUInt64(obj["BytesReceivedPerSec"]);
  10.                 ulong bytesSent = Convert.ToUInt64(obj["BytesSentPerSec"]);
  11.                 Console.WriteLine($"Download Speed: {bytesReceived} bytes/sec");
  12.                 Console.WriteLine($"Upload Speed: {bytesSent} bytes/sec");
  13.                 break;
  14.             }
  15.         }
复制代码
 如果再不行可能是网卡出异常了

来源:https://www.cnblogs.com/log9527blog/archive/2023/05/23/17426019.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具