Exemplo n.º 1
0
        protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
        {
            try
            {
                if (session == null)
                {
                    throw new InvalidOperationException();
                }

                session.StepIn();
                return(new StepInResponse());
            }
            catch (Exception ex)
            {
                Log(ex.Message, LogCategory.DebugAdapterOutput);
                throw new ProtocolException(ex.Message, ex);
            }
        }
Exemplo n.º 2
0
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     Status = StatusType.SetpIn;
     _resetEvent.Set();
     return(new StepInResponse());
 }
Exemplo n.º 3
0
 public Task <StepInResponse> Handle(StepInArguments request, CancellationToken cancellationToken)
 {
     Count++;
     return(Task.FromResult(new StepInResponse()));
 }
 public Task <StepInResponse> Handle(StepInArguments request, CancellationToken cancellationToken)
 {
     _debugService.StepIn();
     return(Task.FromResult(new StepInResponse()));
 }
Exemplo n.º 5
0
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     this.Continue(step: true);
     return(new StepInResponse());
 }
Exemplo n.º 6
0
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     debugged.SendStep(arguments.ThreadId, StepTypes.Into);
     return(new StepInResponse());
 }
Exemplo n.º 7
0
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     Controller.Step(1);
     return(new StepInResponse());
 }