Beispiel #1
0
        internal bool RunWithDebugger(RunMode runMode)
        {
            IExecutionSession session = this.ExecutionSession;

            if (session.RunWithDebugger(runMode) == false)
            {
                return(false);
            }

            // Returns 'true' if execution is not ended.
            return(false == session.ExecutionEnded);
        }