WebClient请求期间发生异常

时间:2011-08-04 14:11:24

标签: c# .net exception webclient

使用c#webclient类将文件上载到服务器时,会发生以下错误

An exception occurred during a WebClient request

不幸的是,这个例外的状态是未知的。该程序运行良好数周,但现在我们想要上传异常的文件更频繁(并非总是)。

有人知道我可以测试什么来找出这种情况发生的原因吗?有些调试方法也许?也许任何解决方案?

这是上传代码

WebClient web = new WebClient();
if (user != null) {
     web.Credentials = new NetworkCredential(user, password);
}

byte[] responseArray = web.UploadFile(uri, file.FullName);

0 个答案:

没有答案