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
  • 32,180
  • 27
  • 124
  • 263

1 Answers1

0

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

Darrel Miller
  • 139,164
  • 32
  • 194
  • 243