这是我目前所拥有的(基本)示例:
foreach (var uri in uris)
{
using (var client = new WebClient())
{
client.Proxy = null;
client.DownloadStringCompleted += DownloadComplete;
client.DownloadStringAsync(uri);
}
}
Run Code Online (Sandbox Code Playgroud)
有更快的方法吗?