IXCLRDataProcess::StartEnumMethodInstancesByAddress Method

Provides a handle to enumerate the method instances of AppDomain starting at a given address.

Note

This API was originally designed for internal use in the runtime. Although it is now supported for 3rd party use, we recommend working with ICorDebug and ICorProfiler APIs when possible.

Syntax

HRESULT StartEnumMethodInstancesByAddress(
    [in] CLRDATA_ADDRESS     address,
    [in] IXCLRDataAppDomain *appDomain,
    [out] CLRDATA_ENUM      *handle
);

Parameters

address
[in] The address of the first method instance.

appDomain
[in] The AppDomain of the method instances.

handle
[out] A handle for enumerating the method instances.

Remarks

The provided method is part of the IXCLRDataProcess interface and corresponds to the 28th slot of the virtual method table.

Requirements

Platforms: See System Requirements.
Header: None
Library: None
.NET Framework Versions: Available since 4.7

See also