IXCLRDataMethodDefinition::GetRepresentativeEntryAddress Method

Gets the most representative start address of the native code for this method. A method may have multiple entry points, so this address is not guaranteed to be hit by all entries.

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 GetRepresentativeEntryAddress(
    [out] CLRDATA_ADDRESS *addr
);

Parameters

addr
[out] The most representative start address of the native code for this method.

Remarks

The provided method is part of the IXCLRDataMethodDefinition interface and corresponds to the 19th slot of the virtual method table. CLRDATA_ADDRESS is a 64-bit unsigned integer.

Requirements

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

See also