Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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: Windows 2000, Windows XP, Windows Server 2003 family
Header: Cor.h
Library: Included as a resource in MsCorEE.dll
.NET Framework Version: 2.0, 1.1, 1.0