Compartir vía


CorDebugIntercept (enumeración)

Indica los tipos de código que se pueden interceptar (es decir, entrar en).

Syntax

typedef enum CorDebugIntercept {
    INTERCEPT_NONE                = 0x0,
    INTERCEPT_CLASS_INIT          = 0x01,
    INTERCEPT_EXCEPTION_FILTER    = 0x02,
    INTERCEPT_SECURITY            = 0x04,
    INTERCEPT_CONTEXT_POLICY      = 0x08,
    INTERCEPT_INTERCEPTION        = 0x10,
    INTERCEPT_ALL                 = 0xffff
} CorDebugIntercept;

Members

Miembro Description
INTERCEPT_NONE No se puede interceptar ningún código.
INTERCEPT_CLASS_INIT Se puede interceptar un constructor.
INTERCEPT_EXCEPTION_FILTER Se puede interceptar un filtro de excepción.
INTERCEPT_SECURITY El código que aplica la seguridad se puede interceptar.
INTERCEPT_CONTEXT_POLICY Se puede interceptar una directiva de contexto.
INTERCEPT_INTERCEPTION No se usa.
INTERCEPT_ALL Todo el código se puede interceptar.

Observaciones

Use el método ICorDebugStepper::SetInterceptMask para establecer los tipos de código que se pueden interceptar.

Requisitos

Plataformas: Consulte Sistemas operativos compatibles con .NET.

Encabezado: CorDebug.idl, CorDebug.h

Biblioteca: CorGuids.lib

Versiones de .NET: Disponible desde .NET Framework 1.0