Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Defines the set of debug events / exceptions which the script debugger can (potentially) auto-break on.
Syntax
typedef enum ScriptDebugEventFilter {
ScriptDebugEventFilterEntry,
ScriptDebugEventFilterException,
ScriptDebugEventFilterUnhandledException,
ScriptDebugEventFilterAbort
} ;
Constants
ScriptDebugEventFilterEntry Indicates that a break on EVERY ENTRY into the script from outside should break into the debugger. |
ScriptDebugEventFilterException Indicates that any first chance exception should immediately break into the debugger. |
ScriptDebugEventFilterUnhandledException ScriptDebugEventFilterUnhandledException: Indicates that unhandled exceptions should immediately break into the debugger. |
ScriptDebugEventFilterAbort Indicates that an abort (core debugger BREAK/STOP this action) should break into the script debugger rather than aborting the script execution. |
Requirements
Requirement | Value |
---|---|
Header | dbgmodel.h |