Obtaining attributed network usage information from the Windows Runtime

4 · Raymond Chen · May 21, 2021, 2:22 p.m.
The network usage information we obtained last time can also be attributed, so you can see who is consuming all of your bandwidth. Modify the C# application to gather data differently: using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Windows.Networking.Connectivity; The post Obtaining attributed network usage information from the Windows Runtime appeared first on The Old New Thing....