VSNDK.DebugEngine.AD7BreakpointBoundEvent.IDebugBreakpointBoundEvent2 C# (CSharp) Method

IDebugBreakpointBoundEvent2() private method

Gets the pending breakpoint that is being bound. (http://msdn.microsoft.com/en-us/library/bb146558.aspx)
private IDebugBreakpointBoundEvent2 ( IDebugPendingBreakpoint2 &ppPendingBP ) : int
ppPendingBP IDebugPendingBreakpoint2 Returns the IDebugPendingBreakpoint2 object that represents the pending breakpoint being /// bound.
return int
        int IDebugBreakpointBoundEvent2.GetPendingBreakpoint(out IDebugPendingBreakpoint2 ppPendingBP)
        {
            ppPendingBP = m_pendingBreakpoint;
            return VSConstants.S_OK;
        }

Same methods

AD7BreakpointBoundEvent::IDebugBreakpointBoundEvent2 ( IEnumDebugBoundBreakpoints2 &ppEnum ) : int