0

I have a windows phone 7 app. I have a pivot control. I'm making a RestRequest (Hammock library) to get the async web result to fill first pivot item. I want to make a second request as soon as I get first result without hanging up the UI. It must show the first pivot content while doing a background request for second pivot content. I'm getting error for the second request.

enter image description here

Codie
  • 464
  • 2
  • 5
  • 16

1 Answers1

0

Async methods return Task objects. Read about Task.ContinueWith construction, which allows to set asynchronous methods flow in queue.