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 下载文件。不允许使用 Webclients DownloadFile。
我应该把它们保存在哪里,它们只是暂时的原因(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);