Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WP7でファイルをダウンロードするにはどうすればよいですか。WebclientsDownloadFileは許可されていません。
そして、それらをどこに保存すればよいのか、それらは一時的な原因(xmlファイル)のためだけのものです。
これを試して:
System.Uri targetUri = new System.Uri("http://www.dot.com/yourFile.zip"); HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(targetUri); request.BeginGetResponse(new AsyncCallback(ReadWebRequestCallback), request);