I was wondering if it's possible to convert the string StackTrace in the exception to a more structured data object?

Or is there a method that can get me this information while I am catching the exception? Maybe something using reflection?

Thanks!

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Use StackTrace class with constructor accepting Exception:

static void ShowExceptionStackTrace(Exception ex)
{
    var stackTrace = new StackTrace(ex, true);

    foreach (var frame in stackTrace.GetFrames())
        Console.WriteLine(frame.GetMethod().Name);
}
link|improve this answer
feedback

Check out the System.Diagnostics.StackTrace class. You can create the object and walk over the frames.

StackTrace st = new StackTrace();
foreach (var frame in st.GetFrames())
{
    Console.WriteLine(frame.GetFileName().ToString()
        + ":"
        + frame.GetFileLineNumber().ToString());
}
link|improve this answer
This is a really handy class. If you ever want to determine what method called you, and if there are any custom attributes defined on that method then you need this class. – Josh Nov 21 '09 at 21:17
2  
well i found out that u can pass an exception object to the contructor of StackTrace(). so bassicaly that is it :) – Karim Nov 21 '09 at 21:19
@Karim: that is the easier way :) – leppie Nov 21 '09 at 21:23
the problem is that i am sending this Exception object to a function that is handling the logging of the exception. so if i create a StackTrace() , it will give me the current stack trace and not the one associated with the exception – Karim Nov 21 '09 at 21:29
are you sure you are creating it from the exception? that seems to work for me. – Matt Breckon Nov 21 '09 at 21:35
feedback

Essentially, if you want a consistent solution you are out of luck.

You can get a hodge podge solution by storing the stack trace on exception construction.

But, there are no hooks in the framework that are called when an exception is thrown.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.