我必须从外部源下载一些数据,但我必须提交我想要检索的数据,我正在使用特殊的 url(在网站上)路由并且我不允许在 URL 中使用特殊字符,所以我想我必须使用 POST或 GET 方法提交数据。如何通过 Download String Async 实现这一点?
WebClient c = new WebClient();
c.DownloadStringCompleted += new DownloadStringCompletedEventHandler(DownloadStringCompleted);
c.DownloadStringAsync(new Uri(uristring));
如您所见,我目前仅下载默认数据。