Para imprimir apenas a Message
parte s de exceções profundas, você pode fazer algo assim:
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;
}
}
}
Isso recursivamente passa por todas as exceções internas (incluindo o caso de AggregateException
s) para imprimir todas as Message
propriedades contidas nelas, delimitadas por quebra de linha.
Por exemplo
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());
Ocorreu um aumento externo.
Agregado interno ex.
O número não está no formato correto.
Acesso a arquivos não autorizado.
Não é administrador.
Você precisará ouvir outras propriedades de exceção para obter mais detalhes. Por exemplo Data
, terá algumas informações. Você poderia fazer:
foreach (DictionaryEntry kvp in exception.Data)
Para obter todas as propriedades derivadas (não na Exception
classe base ), você pode:
exception
.GetType()
.GetProperties()
.Where(p => p.CanRead)
.Where(p => p.GetMethod.GetBaseDefinition().DeclaringType != typeof(Exception));