在一些并行操作或者任务列表执行的过程中,会需要用到AggregateException
进行聚合异常的处理
对于不同类型的异常我们可能期望不同的处理方式,或者简单的对每个内部异常进行日志输出
一般来说我们可能会想使用InnerException属性对内部异常进行迭代处理。
但是如果AggregateException
的内部也嵌套了AggregateException
那么就很尴尬了
我们必须使用while循环进行处理
不过AggregateException
提供了一个简单的解决方案,就是Flatten方法
Flatten方法可以将AggregateException
以迭代的方式展开,所有的InnerException,以列表的形式进行单独处理哦(如微软的例子所示)
public class Example
{
public static void Main()
{
var task1 = Task.Factory.StartNew(() => {
var child1 = Task.Factory.StartNew(() => {
var child2 = Task.Factory.StartNew(() => {
// This exception is nested inside three AggregateExceptions.
throw new CustomException("Attached child2 faulted.");
}, TaskCreationOptions.AttachedToParent);
// This exception is nested inside two AggregateExceptions.
throw new CustomException("Attached child1 faulted.");
}, TaskCreationOptions.AttachedToParent);
});
try {
task1.Wait();
}
catch (AggregateException ae) {
foreach (var e in ae.Flatten().InnerExceptions) {
if (e is CustomException) {
Console.WriteLine(e.Message);
}
else {
throw;
}
}
}
}
}
参考链接:
本文会经常更新,请阅读原文: https://xinyuehtx.github.io/post/%E4%BD%BF%E7%94%A8flatten%E5%B1%95%E5%BC%80AggregateException.html ,以避免陈旧错误知识的误导,同时有更好的阅读体验。
本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。欢迎转载、使用、重新发布,但务必保留文章署名黄腾霄(包含链接: https://xinyuehtx.github.io ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请 与我联系 。