Microsoft.R.Debugger.AD7PendingBreakpoint.IDebugPendingBreakpoint2 C# (CSharp) Method

IDebugPendingBreakpoint2() private method

private IDebugPendingBreakpoint2 ( ) : int
return int
        int IDebugPendingBreakpoint2.Bind() {
            if (GetBindError() != null) {
                return VSConstants.S_FALSE;
            }

            string fileName;
            int lineNumber;
            TEXT_POSITION start, end;
            GetLocation(out fileName, out lineNumber, out start, out end);

            _boundBreakpoint = new AD7BoundBreakpoint(this, new RSourceLocation(fileName, lineNumber), _state);
            return VSConstants.S_OK;
        }

Same methods

AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( BP_CONDITION bpCondition ) : int
AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( BP_PASSCOUNT bpPassCount ) : int
AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( IDebugBreakpointRequest2 &ppBPRequest ) : int
AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( IEnumDebugBoundBreakpoints2 &ppEnum ) : int
AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( IEnumDebugErrorBreakpoints2 &ppErrorEnum ) : int
AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( PENDING_BP_STATE_INFO pState ) : int
AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( enum_BP_ERROR_TYPE bpErrorType, IEnumDebugErrorBreakpoints2 &ppEnum ) : int
AD7PendingBreakpoint::IDebugPendingBreakpoint2 ( int fEnable ) : int