Debugger2::LastBreakReason Property
Visual Studio 2015
Gets the last reason that a program was broken. If the program is running it returns DBG_REASON_NONE.
Assembly: EnvDTE80 (in EnvDTE80.dll)
Implements
Debugger::LastBreakReasonA program can be broken, for example, for some of the following reasons:
A breakpoint was hit. Gets dbgEventReasonBreakpoint.
An exception was thrown. Gets dbgEventReasonExceptionThrown.
An exception was thrown but not handled by the program being debugged. Gets dbgEventReasonExceptionNotHandled.
If nothing is being debugged or the debugger is in run mode, this property returns dbgEventReasonNone.
For a complete list of enumerations, see dbgEventReason.
Show: