Edit

Share via


ICorProfilerInfo::GetClassIDInfo Method

Gets the parent module and the metadata token for the specified class.

Syntax

HRESULT GetClassIDInfo(  
    [in]  ClassID   classId,  
    [out] ModuleID  *pModuleId,  
    [out] mdTypeDef *pTypeDefToken);  

Parameters

classId
[in] The ID of the class for which to get the information.

pModuleId
[out] A pointer to the ID of the parent module of the class.

pTypeDefToken
[out] A pointer to the metadata token for the class.

Remarks

The profiler code can call ICorProfilerInfo::GetModuleMetaData to obtain a metadata interface for a given module. The metadata token that is returned to the ___location referenced by pTypeDefToken can then be used to access the metadata for the class.

To get more information for generic types, use ICorProfilerInfo2::GetClassIDInfo2.

Requirements

Platforms: See System Requirements.

Header: CorProf.idl, CorProf.h

Library: CorGuids.lib

.NET Framework Versions: Available since 2.0

See also