Enumeration

IdeDebuggerDisposition

Declaration

enum Ide.DebuggerDisposition

Description

The disposition determines what should happen to the breakpoint at the next stop of the debugger.

Members

IDE_DEBUGGER_DISPOSITION_KEEP

The breakpoint will be kept after the next stop. This generally means the breakpoint is persistent until removed by the user.

  • Value: 0
  • Available since: 48
IDE_DEBUGGER_DISPOSITION_DISABLE

The breakpoint is currently disabled.

  • Value: 1
  • Available since: 48
IDE_DEBUGGER_DISPOSITION_DELETE_NEXT_HIT

The breakpoint will be removed after the next time it is hit.

  • Value: 2
  • Available since: 48
IDE_DEBUGGER_DISPOSITION_DELETE_NEXT_STOP

The breakpoint will be removed the next time the debugger stops, even if not hit.

  • Value: 3
  • Available since: 48