我必须从外部源下载一些数据,但我必须提交我想要检索的数据,我使用特殊网址(在网站上)路由,我不允许在URL中使用特殊字符,所以我想我有使用POST或GET方法提交数据。如何使用Download String Async实现这一目标?
WebClient c = new WebClient();
c.DownloadStringCompleted += new DownloadStringCompletedEventHandler(DownloadStringCompleted);
c.DownloadStringAsync(new Uri(uristring));
如您所见,我目前正在下载默认数据。
答案 0 :(得分:0)
最简单的方法可能是使用UploadStringAsync
或UploadDataAsync
,附加了相应的事件处理程序。