Step() публичный Метод

public Step ( ThreadingModel model, StepMode mode ) : CommandResult
model ThreadingModel
mode StepMode
Результат CommandResult
Пример #1
0
 protected override CommandResult DoStep(Thread thread, ThreadingModel model, ScriptingContext context)
 {
     context.Interpreter.Style.IsNative = false;
     return thread.Step (model, StepMode.SourceLine, null);
 }
Пример #2
0
 protected override CommandResult DoStep(Thread thread, ThreadingModel model, ScriptingContext context)
 {
     context.Interpreter.Style.IsNative = true;
     return thread.Step (model, Native ? StepMode.NativeInstruction : StepMode.SingleInstruction, null);
 }
Пример #3
0
 public void Continue(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.Run);
 }
Пример #4
0
 protected override CommandResult DoStep(Thread thread, ThreadingModel model, ScriptingContext context)
 {
     return thread.Step (model, StepMode.Run, null);
 }
Пример #5
0
 public void StepOut(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.Finish);
 }
Пример #6
0
 public void StepOver(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.NextLine);
 }
Пример #7
0
 public void StepInto(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.SourceLine);
 }
Пример #8
0
 public void StepOut(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.Finish);
 }
Пример #9
0
 public void StepOver(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.NextLine);
 }
Пример #10
0
 public void StepInto(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.SourceLine);
 }
Пример #11
0
 public void Continue(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.Run);
 }