Aby całkiem wydrukować tylko Message
część głębokich wyjątków, możesz zrobić coś takiego:
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;
}
}
}
To rekursywnie przechodzi przez wszystkie wewnętrzne wyjątki (w tym przypadek AggregateException
s), aby wypisać wszystkie Message
zawarte w nich właściwości, rozdzielone podziałem wiersza.
Na przykład
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());
Wystąpiła zewnętrzna aggr ex.
Wewnętrzny aggr ex.
Numer ma nieprawidłowy format.
Nieautoryzowany dostęp do plików.
Nie administrator.
Aby uzyskać więcej informacji, należy posłuchać innych właściwości wyjątku . Na przykład Data
będzie miał jakieś informacje. Mógłbyś:
foreach (DictionaryEntry kvp in exception.Data)
Aby uzyskać wszystkie właściwości pochodne (nie w Exception
klasie bazowej ), możesz zrobić:
exception
.GetType()
.GetProperties()
.Where(p => p.CanRead)
.Where(p => p.GetMethod.GetBaseDefinition().DeclaringType != typeof(Exception));