dbgBreakpointType Enumeration
Indicatesthe type or state of a breakpoint.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
<GuidAttribute("75607DDE-2B43-11D3-B88B-00C04F79E479")> _
Public Enumeration dbgBreakpointType
[GuidAttribute("75607DDE-2B43-11D3-B88B-00C04F79E479")]
public enum dbgBreakpointType
[GuidAttribute(L"75607DDE-2B43-11D3-B88B-00C04F79E479")]
public enum class dbgBreakpointType
[<GuidAttribute("75607DDE-2B43-11D3-B88B-00C04F79E479")>]
type dbgBreakpointType
public enum dbgBreakpointType
Members
Member name | Description | |
---|---|---|
dbgBreakpointTypeBound | Breakpoint is at a specific point in code. | |
dbgBreakpointTypePending | 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.