I need to monitor internet traffic (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.
Asked
Active
Viewed 391 times
1 Answers
2
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.

ctacke
- 66,480
- 18
- 94
- 155
-
@CirrusFlyer I have no idea about C language. Can you share your code? – Let me Ask Apr 13 '11 at 05:06