在c#中获取网络利用率
如何使用 C# 代码获取网络利用率?
How can I get the network utilization using C# code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 C# 代码获取网络利用率?
How can I get the network utilization using C# code?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以使用Windows Management Instrumentation (WMI) 调用。
以下是一些教程:
系统监视器
创建 C# 性能监视器
You can get some measurements using Windows Management Instrumentation (WMI) calls.
Here are a couple of tutorials:
system monitor
creating a C# performance monitor
您可以从 PerformanceCounters 计算网络利用率。
请参阅如何计算 .NET 中的网络利用率
You can calculate the network utilization from PerformanceCounters.
See How to Calculate Network Utilization in .NET