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

GetBindError() private method

private GetBindError ( ) : string
return string
        private string GetBindError() {
            if (IsDeleted) {
                return "Breakpoint is deleted.";
            }

            if (_requestInfo.bpLocation.bpLocationType != (uint)enum_BP_LOCATION_TYPE.BPLT_CODE_FILE_LINE) {
                return "Function, call stack, and address breakpoints are not supported in R.";
            }

            if (_requestInfo.bpCondition.styleCondition != (uint)enum_BP_COND_STYLE.BP_COND_NONE) {
                return "Conditional breakpoints are not supported in R.";
            }

            if (_requestInfo.bpPassCount.stylePassCount != (uint)enum_BP_PASSCOUNT_STYLE.BP_PASSCOUNT_NONE) {
                return "Hit count breakpoints are not supported in R.";
            }

            return null;
        }