views:

383

answers:

3

How can I get the network utilization using C# code?

+3  A: 

You can get some measurements using Windows Management Instrumentation (WMI) calls.

Here are a couple of tutorials:

Ben Griswold
A: 

This link might be helpful to you.

malay
+1  A: 

This article shows how to calculate the network utilization from PerformanceCounters How to Calculate Network Utilization in .NET

bashmohandes