Message
Derin istisnaların sadece bir kısmını yazdırmak için şöyle bir şey yapabilirsiniz:
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;
}
}
}
Bu , satır sonu ile sınırlandırılmış olan AggregateException
tüm Message
mülkleri yazdırmak için tüm iç istisnaları (durumlar dahil ) tekrar eder.
Örneğin
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());
Dış aggr oluştu.
İç aggr ör.
Sayı doğru biçimde değil.
Yetkisiz dosya erişimi.
Yönetici değil.
Daha fazla ayrıntı için diğer İstisna özelliklerini dinlemeniz gerekir . Örneğin Data
bazı bilgilere sahip olacak. Şunları yapabilirsiniz:
foreach (DictionaryEntry kvp in exception.Data)
Türetilmiş tüm özellikleri (temel Exception
sınıfta değil) elde etmek için şunları yapabilirsiniz:
exception
.GetType()
.GetProperties()
.Where(p => p.CanRead)
.Where(p => p.GetMethod.GetBaseDefinition().DeclaringType != typeof(Exception));