Щоб симпатично надрукувати лише Message
частину глибоких винятків, ви можете зробити щось подібне:
public static string ToFormattedString(this Exception exception)
{
IEnumerable<string> messages = exception
.GetAllExceptions()
.Where(e => !String.IsNullOrWhiteSpace(e.Message))
.Select(e => e.Message.Trim());
string flattened = String.Join(Environment.NewLine, messages); // <-- the separator here
return flattened;
}
public static IEnumerable<Exception> GetAllExceptions(this Exception exception)
{
yield return exception;
if (exception is AggregateException aggrEx)
{
foreach (Exception innerEx in aggrEx.InnerExceptions.SelectMany(e => e.GetAllExceptions()))
{
yield return innerEx;
}
}
else if (exception.InnerException != null)
{
foreach (Exception innerEx in exception.InnerException.GetAllExceptions())
{
yield return innerEx;
}
}
}
Це рекурсивно проходить через усі внутрішні винятки (включаючи випадки AggregateException
s), щоб надрукувати всю Message
властивість, що міститься в них, розмежувану перервою рядка.
Напр
var outerAggrEx = new AggregateException(
"Outer aggr ex occurred.",
new AggregateException("Inner aggr ex.", new FormatException("Number isn't in correct format.")),
new IOException("Unauthorized file access.", new SecurityException("Not administrator.")));
Console.WriteLine(outerAggrEx.ToFormattedString());
Сталася зовнішня агр.
Внутрішня агр.
Номер не в правильному форматі.
Несанкціонований доступ до файлів.
Не адміністратор.
Ви повинні будете слухати інші виключення властивостей для більш докладної інформації. Бо, наприклад, Data
буде мати певну інформацію. Ви можете зробити:
foreach (DictionaryEntry kvp in exception.Data)
Щоб отримати всі похідні властивості (не для базового Exception
класу), ви можете зробити:
exception
.GetType()
.GetProperties()
.Where(p => p.CanRead)
.Where(p => p.GetMethod.GetBaseDefinition().DeclaringType != typeof(Exception));