IDkmBreakpointManagerNotification.OnBreakpointBound Method

Definition

Notification from the breakpoint manager when a breakpoint has been bound. In the case of user-set breakpoints, this notification will be sent to the AD7 AL, and the AD7 AL will fire a IDebugBreakpointBoundEvent2 to the Visual Studio Debugger UI.

public:
 void OnBreakpointBound(Microsoft::VisualStudio::Debugger::Breakpoints::DkmPendingBreakpoint ^ pendingBreakpoint, cli::array <Microsoft::VisualStudio::Debugger::Breakpoints::DkmBoundBreakpoint ^> ^ boundBreakpoints);
public void OnBreakpointBound (Microsoft.VisualStudio.Debugger.Breakpoints.DkmPendingBreakpoint pendingBreakpoint, Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint[] boundBreakpoints);
abstract member OnBreakpointBound : Microsoft.VisualStudio.Debugger.Breakpoints.DkmPendingBreakpoint * Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint[] -> unit
Public Sub OnBreakpointBound (pendingBreakpoint As DkmPendingBreakpoint, boundBreakpoints As DkmBoundBreakpoint())

Parameters

pendingBreakpoint
DkmPendingBreakpoint

[In] High level breakpoint object which is tied to a user-level construct (ex: source file, function name) which may map to zero or more code-level constructs (DkmBoundBreakpoint) and which may be tracked over time.

boundBreakpoints
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.

Applies to