Enum ExecutionStopReason
Defines possible causes stop execution.
public enum ExecutionStopReason
Fields
Break = 0Execution stopped because of
IScriptDebugger.Breakmethod called.BreakpointHit = 1Execution stopped because process reached breakpoint.
Exception = 3Execution stopped because process raises exception.
SetNextStatement = 5Execution stopped because user set next statement.
StepComplete = 2Execution stopped because process completes next step.
UnhandledException = 4Execution stopped because process raises exception and it was unhandled.