在C#中处理异步HttpWebRequest异常的最佳方法是什么?

时间:2011-05-25 23:39:34

标签: c# .net asynchronous httpwebrequest

我正在研究一些代码来异步使用HttpWebRequest。如果你们之前曾经这样做过,那么你知道错误处理可能会有点痛苦,因为如果在其中一个回调方法中抛出异常,它就不能通过试验传递回调用代码/ catch block。

我想要做的是通过在我的状态对象中保存传递给每个回调方法的异常来处理错误。如果捕获到异常,将更新状态对象,然后将中止http调用。我遇到的问题是,在我的状态对象中,我必须使用Exception属性,以便可以存储任何类型的异常。当调用代码检查状态对象并“看到”异常时,它不知道它是什么类型的异常。

有没有办法允许我的状态对象保存任何类型的异常,但仍然保持强类型的异常?

州对象

public class HttpPostClientAsyncModel
    {
        public HttpResponseSnapshot Response { get; set; }
        public HttpPostClientAsyncStatus Status { get; set; }
        public Exception Exception { get; set; }
        public WebRequest Request { get; set; }
    }

1 个答案:

答案 0 :(得分:1)

异常对象仍然是强类型的,并保留其原始字段值。您只需要检查它:

if (asyncModel.Exception is ArgumentException)
{
  // Handle argument exception here
  string invalidParameter = (asyncModel.Exception as ArgumentException).ParamName;
}
else if (...)
{
}

你通常会使用try / catch块进行非常类似的检查,所以这不应该是不方便的。如果您真的担心这一点,只需使用sync方法创建一个新线程,并使用continuation选项处理异常:

Task.Factory.StartNew(() => { DoWork(); })
.ContinueWith(t => Logger.Error("An exception occurred while processing. Check the inner exception for details", t.Exception),
TaskContinuationOptions.OnlyOnFaulted);