Dela via


CorDebugDebugEventKind-uppräkning

Anger vilken typ av händelse vars information avkodas av metoden DecodeEvent .

Syntax

typedef enum CorDebugDebugEventKind {
    DEBUG_EVENT_KIND_MODULE_LOADED                          = 1,
    DEBUG_EVENT_KIND_MODULE_UNLOADED                        = 2,
    DEBUG_EVENT_KIND_MANAGED_EXCEPTION_FIRST_CHANCE         = 3,
    DEBUG_EVENT_KIND_MANAGED_EXCEPTION_USER_FIRST_CHANCE    = 4,
    DEBUG_EVENT_KIND_MANAGED_EXCEPTION_CATCH_HANDLER_FOUND  = 5,
    DEBUG_EVENT_KIND_MANAGED_EXCEPTION_UNHANDLED            = 6
} CorDebugRecordFormat;

Medlemmar

Medlem Description
DEBUG_EVENT_KIND_MODULE_LOADED En modulinläsningshändelse.
DEBUG_EVENT_KIND_MODULE_UNLOADED En modul avlastningshändelse.
DEBUG_EVENT_KIND_MANAGED_EXCEPTION_FIRST_CHANCE Ett undantag för första chansen.
DEBUG_EVENT_KIND_MANAGED_EXCEPTION_USER_FIRST_CHANCE Ett användarfel för första chansen.
DEBUG_EVENT_KIND_MANAGED_EXCEPTION_CATCH_HANDLER_FOUND Ett undantag för vilket en catch hanterare finns.
DEBUG_EVENT_KIND_MANAGED_EXCEPTION_UNHANDLED Ett ohanterat undantag.

Kommentarer

En medlem i CorDebugDebugEventKind uppräkningen returneras genom att anropa metoden ICorDebugDebugEvent::GetEventKind .

Anteckning

Den här uppräkningen är endast avsedd att användas i .NET Native felsökningsscenarier.

Krav

Plattformar: Se Systemkrav.

Huvudet: CorDebug.idl, CorDebug.h

Bibliotek: CorGuids.lib

.NET Framework versioner: Endast tillgänglig sedan 4.6, .NET Native

Se även