Wait() public method

public Wait ( CommandResult result ) : bool
result Mono.Debugger.CommandResult
return bool
コード例 #1
0
        internal void ActivatePendingBreakpoints()
        {
            CommandResult result = Interpreter.CurrentProcess.ActivatePendingBreakpoints();

            if (result == null)
            {
                return;
            }

            Interpreter.Wait(result);
        }