1

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.

Let me Ask
  • 1,029
  • 1
  • 8
  • 33

1 Answers1

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