webclient の新しいインスタンスを返す静的クラスがあります
public static class WebAccess
{
public static WebClient GetWebClient()
{
return new WebClient();
}
}
次に、このクラスを使用して、このようなページにアクセスします
WebAccess.GetWebClient().DownloadString(new Uri("http://" + WLCDomainUrl + ConfigurationManager.AppSettings["urlClearCache"].ToString() + "/?id=" + Request.QueryString["id"] + "&Type=RC"));
応答をキャッチしたくない
しかし、ほとんどの場合例外をスローしています
WebClient does not support concurrent I/O operations.
Stack Trace:
at System.Net.WebClient.ClearWebClientState()
at System.Net.WebClient.DownloadString(Uri address)
at UpdateCache.ProcessLocationCacheRequest(String locId, Boolean isChain) in
WebClient does not support concurrent I/O operations.
Stack Trace:
at System.Net.WebClient.ClearWebClientState()
at System.Net.WebClient.UploadString(Uri address, String method, String data)
at System.Net.WebClient.UploadString(String address, String data)
at CacheClassLibrary.ServerClass.APIServer.Create(String Id, String MobileWLCUrl) in
何か助けて?? Webクライアントの新しいインスタンスで各リクエストを処理しているため、私はそれを理解できません:/
アプリケーションは同時に複数のリクエストを受け取ります。