IDkmBreakpointManager.IsBoundBreakpointEnabled(DkmBoundBreakpoint) Method

Definition

Query to determine if the bound breakpoint is enabled.

public:
 bool IsBoundBreakpointEnabled(Microsoft::VisualStudio::Debugger::Breakpoints::DkmBoundBreakpoint ^ boundBreakpoint);
public bool IsBoundBreakpointEnabled (Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint boundBreakpoint);
abstract member IsBoundBreakpointEnabled : Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint -> bool
Public Function IsBoundBreakpointEnabled (boundBreakpoint As DkmBoundBreakpoint) As Boolean

Parameters

boundBreakpoint
DkmBoundBreakpoint

[In] Represents a breakpoint which has been bound (resolved) to a particular code instruction address or a particular data element. For example, in C++ templates one could create a DkmPendingBreakpoint for a source line. The breakpoint manager would resolve it to zero (ex: module not loaded), one (ex: template is only used on 'int') or many (ex: template is used with many template arguments) location. Each location would have a DkmBoundBreakpoint object.

Returns

[Out] 'true' if the breakpoint is enabled.

Applies to