ICorProfilerInfo::GetClassIDInfo Method

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

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 .NET Framework System Requirements.

Header: CorProf.idl, CorProf.h

Library: CorGuids.lib

.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0

See Also

Reference

ICorProfilerInfo Interface