Masud Rahman
Masud Rahman

Reputation: 1062

How to collect exception from visual studio debugger?

I was wondering how can I get an exception details encountered by VS 2012 debugger? The exception details will be used by a plugin installed within the IDE.

Upvotes: 0

Views: 42

Answers (1)

Sergey Vlasov
Sergey Vlasov

Reputation: 27880

DebuggerEvents.OnExceptionThrown from dte.Events.DebuggerEvents provides ExceptionType, Name, Code, Description for an exception thrown.

Upvotes: 1

Related Questions