Reputation: 16903
How can I get the network utilization using C# code?
Upvotes: 2
Views: 3040
Reputation: 2376
You can calculate the network utilization from PerformanceCounters.
See How to Calculate Network Utilization in .NET
Upvotes: 1
Reputation: 18321
You can get some measurements using Windows Management Instrumentation (WMI) calls.
Here are a couple of tutorials:
Upvotes: 7