Badr Hari
Badr Hari

Reputation: 8384

Downloading files with WP7

How can I download files with WP7. Webclients DownloadFile is not allowed.

And where should I save them, they are only for a temporarily cause (xml files).

Upvotes: 1

Views: 132

Answers (1)

animaonline
animaonline

Reputation: 3804

Try this:

    System.Uri targetUri = new System.Uri("http://www.dot.com/yourFile.zip");
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(targetUri);
    request.BeginGetResponse(new AsyncCallback(ReadWebRequestCallback), request);

Upvotes: 1

Related Questions