Per stampare piuttosto solo la Message
parte delle eccezioni profonde, potresti fare qualcosa del genere:
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;
}
}
}
Ciò ricorre in modo ricorsivo a tutte le eccezioni interne (incluso il caso di AggregateException
s) per stampare tutte le Message
proprietà in esse contenute, delimitate dall'interruzione di riga.
Per esempio
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());
Si è verificato un errore esterno.
Inner aggr ex.
Il numero non è nel formato corretto.
Accesso ai file non autorizzato.
Non amministratore.
Sarà necessario ascoltare altre proprietà delle eccezioni per maggiori dettagli. Per esempio Data
avrà alcune informazioni. Potresti fare:
foreach (DictionaryEntry kvp in exception.Data)
Per ottenere tutte le proprietà derivate (non sulla Exception
classe base ), puoi fare:
exception
.GetType()
.GetProperties()
.Where(p => p.CanRead)
.Where(p => p.GetMethod.GetBaseDefinition().DeclaringType != typeof(Exception));