COR_ACTIVE_FUNCTION 結構

包含目前執行緒框架中正在作用的函式相關資訊。 ICorDebugThread2::GetActiveFunctions 方法會使用此結構。

語法

typedef struct  _COR_ACTIVE_FUNCTION {
    ICorDebugAppDomain   *pAppDomain;
    ICorDebugModule      *pModule;
    ICorDebugFunction2   *pFunction;
    ULONG32              ilOffset;
    ULONG32              flags;
} COR_ACTIVE_FUNCTION;

成員

member 描述
pAppDomain 欄位應用程式域擁有者的 ilOffset 指標。
pModule 欄位模組擁有者的 ilOffset 指標。
pFunction 欄位函式擁有者的 ilOffset 指標。
ilOffset 框架的通用中繼語言 (CIL) 位移。
flags 保留給未來的擴充性。

需求

平台:請參閱系統需求

標頭: CorDebug.idl

程式庫:CorGuids.lib

.NET Framework 版本: 自 2.0 起提供

另請參閱