Windows Mobile - Internet Usage C#
I need to monitor internet 开发者_如何学Pythontraffic (both upload and download) on windows mobile. Is there any API available to monitor internet data traffic on windows mobile (C#)? I am using OpenNetCF in my project. I can also use API from OpenNetCF is it is available.
Unfortunately no, there is no API to monitor traffic (in managed or native code). The best solution is to create an NDIS intermediate filter driver that does all of the computations, stores the results and exposes an API for retrieving those results. That has to be written in C.
精彩评论