CorDebugExceptionFlags Enumeration

Provides additional information about an exception.

typedef enum CorDebugExceptionFlags {
    DEBUG_EXCEPTION_CAN_BE_INTERCEPTED = 0x0001
} CorDebugExceptionFlags;

Members

Member

Description

DEBUG_EXCEPTION_CAN_BE_INTERCEPTED

The exception is interceptable.

The timing of the exception may still be such that the debugger cannot intercept it. For example, if there is no managed code below the current callback or the exception event resulted from a just-in-time (JIT) attachment, the exception cannot be intercepted.

Remarks

New values may be added to this enumeration in later versions, so you should prepare code that uses CorDebugExceptionFlags for unexpected values.

Requirements

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: CorDebug.idl

Library: CorGuids.lib

.NET Framework Version: 2.0

See Also

Concepts

Debugging Enumerations