Enum AllowedDebuggerCommands
Represents commands allowed by the Debugger UI.
[Flags]
public enum AllowedDebuggerCommands
Fields
Break = 16Break command is allowed.
Compile = 4Compile command is allowed.
EvaluateExpression = 256Evaluate expression command is allowed.
None = 0No command.
RunToCursor = 512Run to cursor command is allowed.
StartOrContinue = 1Start and continue commands are allowed.
StartWithoutDebug = 2Start without debug command is allowed.
StepInto = 32Step into command is allowed.
StepOut = 128Step out command is allowed.
StepOver = 64Step over command is allowed.
Stop = 8Stop command is allowed.