VSNDK.DebugEngine.EngineCallback.OnBreakpointBound C# (CSharp) Method

OnBreakpointBound() public method

Engines notify the debugger that a breakpoint has bound through the breakpoint bound event.
public OnBreakpointBound ( object objBoundBreakpoint, uint address ) : void
objBoundBreakpoint object The bounded breakpoint.
address uint 0.
return void
        public void OnBreakpointBound(object objBoundBreakpoint, uint address)
        {
            AD7BoundBreakpoint boundBreakpoint = (AD7BoundBreakpoint)objBoundBreakpoint;
            IDebugPendingBreakpoint2 pendingBreakpoint;
            ((IDebugBoundBreakpoint2)boundBreakpoint).GetPendingBreakpoint(out pendingBreakpoint);

            AD7BreakpointBoundEvent eventObject = new AD7BreakpointBoundEvent((AD7PendingBreakpoint)pendingBreakpoint, boundBreakpoint);
            Send(eventObject, AD7BreakpointBoundEvent.IID, null);
        }