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
  • Nickname: keep
  • Available since: 47
IDE_DEBUGGER_DISPOSITION_DISABLE

The breakpoint is currently disabled.

  • Value: 1
  • Nickname: disable
  • Available since: 47
IDE_DEBUGGER_DISPOSITION_DELETE_NEXT_HIT

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

  • Value: 2
  • Nickname: delete-next-hit
  • Available since: 47
IDE_DEBUGGER_DISPOSITION_DELETE_NEXT_STOP

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

  • Value: 3
  • Nickname: delete-next-stop
  • Available since: 47