DebuggerResumeAction
Enum
Definition
Possible actions for the debugger after hitting a breakpoint/step
public enum DebuggerResumeAction
- Inheritance
-
DebuggerResumeAction
Fields
| Continue | Continue running until the next breakpoint, or the end of the script |
| StepInto | Step to next statement, going into functions, scripts, etc |
| StepOut | Step to next statement, going over functions, scripts, etc |
| StepOver | Step to next statement after the current function, script, etc |
| Stop | Stop executing the script |