問題は、Webclient.DownloadStringAsync(Uri)
Uri.length が非常に長い場合、次のエラーが表示されることです。An exception occurred during a WebClient request
Webclient の URI では、リンクの長さに制限がありますか? リンクが非常に長い場合はどうなりますか?
WebClient queueItem_client = new WebClient();
queueItem_client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(queueItem_client_DownloadStringCompleted);
queueItem_client.DownloadStringAsync(execUri);
void queueItem_client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{}
リンクの長さはexecUri
2234 文字です。
が約 500 文字で構成されている場合execUri
は、通常の応答が返されます。