Closed advapiIT closed 7 years ago
Call stack on the minidump extends beyond the point of exception, up to the point where the minidump is written. This is a side effect of writing minidump from inside the same application as the one producing the exception. Hence you will have to be careful when replaying the callstack in debugger. This is not a bug, but a known limitation of the implementation.
Excuse me , so what's the advantage of having a dump if it's not on the stack trace ? I won't have the last error and variables
Memory dump contains the heap, which is unchanged between the point of exception and point on memory dump so you can step back in the call stack. Locking the thread since this goes beyond a bug report.
Hello, I was looking exacly for a project as your in order to detect and report unhandled exception , btw I've tried with a simple project and when I read the dump created I got some issues on the stack..
Consider a really simple exception as
private Task OnFireCommandExecute() { throw new Exception(); }
Now it's currecly catched and the report tells
-
When I open the minidump created (also the full one), I got the following stack
Wasn't is suppose to be on the command method? Thank in advance