DkmPendingBreakpoint.OnBreakpointBound(DkmBoundBreakpoint[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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(cli::array <Microsoft::VisualStudio::Debugger::Breakpoints::DkmBoundBreakpoint ^> ^ BoundBreakpoints);
public void OnBreakpointBound (Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint[] BoundBreakpoints);
member this.OnBreakpointBound : Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint[] -> unit
Public Sub OnBreakpointBound (BoundBreakpoints As DkmBoundBreakpoint())
Parameters
- 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.