当前位置:  开发笔记 > 编程语言 > 正文

Wrapped AggregateException仅报告ToString方法中的第一个异常

如何解决《WrappedAggregateException仅报告ToString方法中的第一个异常》经验,为你挑选了0个好方法。

当我直接使用ToString()method 时,我得到完整的嵌套异常集AggregateException:

public void GreenTest()
{
    var ex = new AggregateException(new Exception("ex1"), new Exception("ex2"));

    ex.ToString()
        .Should()
        .Contain("ex1")
        .And
        .Contain("ex2");
}

问题是当我被AggregateException另一个异常包装时,我只得到第一个异常:

public void RedTest()
{
    var ex = new Exception("wrapper", new AggregateException(new Exception("ex1"), new Exception("ex2")));

    ex.ToString()
        .Should()
        .Contain("wrapper")
        .And
        .Contain("ex1")
        .And
        .Contain("ex2");
}

ex2在结果字符串中不存在.这是一个错误或类的一些众所周知的功能AggregateException

推荐阅读
吻过彩虹的脸_378
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有