DkmPendingBreakpoint.OnBreakpointUnbound 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 which indicates that the given breakpoint is being unbound.
public:
void OnBreakpointUnbound(cli::array <Microsoft::VisualStudio::Debugger::Breakpoints::DkmBoundBreakpoint ^> ^ BoundBreakpoints, Microsoft::VisualStudio::Debugger::Breakpoints::DkmBreakpointUnboundReason Reason);
public void OnBreakpointUnbound (Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint[] BoundBreakpoints, Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointUnboundReason Reason);
member this.OnBreakpointUnbound : Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint[] * Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointUnboundReason -> unit
Public Sub OnBreakpointUnbound (BoundBreakpoints As DkmBoundBreakpoint(), Reason As DkmBreakpointUnboundReason)
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.
- Reason
- DkmBreakpointUnboundReason
[In] Describes the reason for a breakpoint to be unbound.