dbgBreakpointType Enum

Definition

Indicatesthe type or state of a breakpoint.

public enum class dbgBreakpointType
public enum class dbgBreakpointType
enum dbgBreakpointType
[System.Runtime.InteropServices.Guid("75607DDE-2B43-11D3-B88B-00C04F79E479")]
public enum dbgBreakpointType
[<System.Runtime.InteropServices.Guid("75607DDE-2B43-11D3-B88B-00C04F79E479")>]
type dbgBreakpointType = 
Public Enum dbgBreakpointType
Inheritance
dbgBreakpointType
Attributes

Fields

dbgBreakpointTypeBound 2

Breakpoint is at a specific point in code.

dbgBreakpointTypePending 1

Breakpoint indicated a set of points in code.

Remarks

A pending breakpoint indicates a general place or condition for a break to occur, such as when function is encountered. A bound breakpoint is associated with each specific instance of the pending breakpoint. Each bound breakpoint is associated to a pending breakpoint.

Applies to