示例#1
0
        DbgDotNetValue IDebuggerRuntime.GetStowedException()
        {
            var value = runtime.GetStowedException(context, frame, DbgDotNetRuntimeConstants.StowedExceptionId, cancellationToken);

            if (value == null)
            {
                throw new InterpreterMessageException(PredefinedEvaluationErrorMessages.InternalDebuggerError);
            }
            return(value);
        }
示例#2
0
        DbgDotNetValue IDebuggerRuntime.GetStowedException()
        {
            var value = runtime.GetStowedException(evalInfo, DbgDotNetRuntimeConstants.StowedExceptionId);

            if (value == null)
            {
                throw new InterpreterMessageException(PredefinedEvaluationErrorMessages.InternalDebuggerError);
            }
            return(value);
        }