Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

5
  • I agree with Dave, async should be "fire and forget", if you need to wait for it to finish before proceeding, you should be calling it syncronously. Commented Jan 4, 2013 at 17:06
  • 1
    @Kevin Unless you need to not block the current thread, which is a very common use case. Commented Jan 4, 2013 at 17:07
  • yeah agree , i know , then how do i call methods mentioned in the code synchronously in wp7 application ? Commented Jan 4, 2013 at 17:13
  • You have a DownloadStringCompleted event handler... Why can't you use that to create your string msg using your Properties.address, etc? Commented Jan 4, 2013 at 17:32
  • @DaveZych ok yeah got a hint let me try hope it works well.. Commented Jan 4, 2013 at 17:45