次のようなアプリケーションの 1 つのコードを見てきました。
catch (AggregateException ae)
{
this._logger.Log(ae.Flatten().InnerException.ToString(), Category.Exception, Priority.High);
}
私の質問はこれです。私は何をするAggregateException.Flatten()
か、何AggregateException.Flatten().InnerExceptions
を表すかを知っています。しかし、AggregateException.Flatten().InnerException
(シングル)は何を表しているのでしょうか?