3

I'm using System.Net.HttpClient to do all the communication with a restful API in my iOS, Android and WP8 project.

One thing I am really missing: how to track progress when async uploading (posting) data to a server?

Any ideas? There are no events, callbacks or whatever in HttpClient that might be helpful to implement progress tracking.

One might think this is a standard requirement for all the mobile apps out there.

Krumelur
  • 31,185
  • 25
  • 120
  • 252

1 Answers1

0

There is a ProgressMessageHandler in here http://www.nuget.org/packages/Microsoft.AspNet.WebApi.Client/5.0.0

Darrel Miller
  • 134,621
  • 30
  • 189
  • 240