Exemplo n.º 1
0
        DbgDotNetValue IDebuggerRuntime.GetStowedException()
        {
            var value = runtime.GetStowedException(context, frame, DbgDotNetRuntimeConstants.StowedExceptionId, cancellationToken);

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

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