DebuggerResumeAction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Possible actions for the debugger after hitting a breakpoint/step.
public enum class DebuggerResumeAction
public enum DebuggerResumeAction
type DebuggerResumeAction =
Public Enum DebuggerResumeAction
- Inheritance
-
DebuggerResumeAction
Fields
Name | Value | Description |
---|---|---|
Continue | 0 | Continue running until the next breakpoint, or the end of the script. |
StepInto | 1 | Step to next statement, going into functions, scripts, etc. |
StepOut | 2 | Step to next statement, going over functions, scripts, etc. |
StepOver | 3 | Step to next statement after the current function, script, etc. |
Stop | 4 | Stop executing the script. |