IMetaDataImport::EnumMethodImpls Method

Enumerates MethodBody and MethodDeclaration tokens representing methods of the specified type.

HRESULT EnumMethodImpls (
   [in, out] HCORENUM    *phEnum, 
   [in]      mdTypeDef   td, 
   [out]     mdToken     rMethodBody[], 
   [out]     mdToken     rMethodDecl[], 
   [in]      ULONG       cMax, 
   [in]      ULONG       *pcTokens
);

Parameters

  • phEnum
    [in, out] A pointer to the enumerator. This must be NULL for the first call of this method.

  • td
    [in] A TypeDef token for the type whose method implementations to enumerate.

  • rMethodBody
    [out] The array to store the MethodBody tokens.

  • rMethodDecl
    [out] The array to store the MethodDeclaration tokens.

  • cMax
    [in] The maximum size of the rMethodBody and rMethodDecl arrays.

  • pcTokens
    [in] The actual number of methods returned in rMethodBody and rMethodDecl.

Return Value

HRESULT

Description

S_OK

EnumMethodImpls returned successfully.

S_FALSE

There are no method tokens to enumerate. In that case, pcTokens is zero.

Requirements

Platforms: See .NET Framework System Requirements.

Header: Cor.h

Library: Included as a resource in MsCorEE.dll

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

See Also

Reference

IMetaDataImport Interface

IMetaDataImport2 Interface