長い間私を悩ませている質問があります。
Windows Phone 8 と c# を使用しています。
Webからファイルをダウンロードしているときに、時々この例外が発生します。
A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.ni.dll
A first chance exception of type 'System.Net.WebException' occurred in System.Windows.ni.dll
A first chance exception of type 'System.Net.WebException' occurred in System.Windows.ni.dll
ExceptionMessage:The remote server returned an error: NotFound.
しかし、その後、プログラムを再度実行すると、正常に動作します。なぜリモートサーバーが見つからないことがあるのかわかりませんが、問題は本当にサーバーにあるのでしょうか? それは私のコードで何かだと思います、私はこれらの関数を使用します:
WebRequest request = WebRequest.Create("http...);
IAsyncResult res = request.BeginGetResponse(new AsyncCallback(DownloadComplete), null);
この例外がポップアップし続け、解決できなかったため、アドバイスをいただければ幸いです。