Enum DebuggerControllerCommandKind
- Namespace
- Alternet.Scripter.Debugger.UI.AlternetUI
- Assembly
- Alternet.Scripter.Debugger.UI.AlternetUI.v10.dll
Represents the different kinds of commands that can be issued to the debugger controller.
public enum DebuggerControllerCommandKind
Fields
Break = 4
Break the execution.
Compile = 1
Compile the code.
EvalExpression = 8
Evaluate an expression.
Start = 0
Start debugging.
StartWithoutDebug = 2
Start without debugging.
StepInto = 5
Step into the next function call.
StepOut = 7
Step out of the current function.
StepOver = 6
Step over the next function call.
Stop = 3
Stop debugging.