Table of Contents

Enum ExecutionStopReason

Namespace
Alternet.Scripter.Debugger
Assembly
Alternet.Scripter.Debugger.Common.v9.dll

Defines possible causes stop execution.

public enum ExecutionStopReason

Fields

Break = 0

Execution stopped because of IScriptDebugger.Break method called.

BreakpointHit = 1

Execution stopped because process reached breakpoint.

Exception = 3

Execution stopped because process raises exception.

SetNextStatement = 5

Execution stopped because user set next statement.

StepComplete = 2

Execution stopped because process completes next step.

UnhandledException = 4

Execution stopped because process raises exception and it was unhandled.