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

IDebugPendingBreakpoint2() private method

private IDebugPendingBreakpoint2 ( IEnumDebugErrorBreakpoints2 &ppErrorEnum ) : int
ppErrorEnum IEnumDebugErrorBreakpoints2
return int
        int IDebugPendingBreakpoint2.CanBind(out IEnumDebugErrorBreakpoints2 ppErrorEnum) {
            string message = GetBindError();
            if (message == null) {
                ppErrorEnum = null;
                return VSConstants.S_OK;
            }

            var error = new AD7ErrorBreakpoint(this, new AD7ErrorBreakpointResolution(message));
            ppErrorEnum = new AD7ErrorBreakpointEnum(new IDebugErrorBreakpoint2[] { error });
            return VSConstants.S_FALSE;
        }

Same methods

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