IXCLRDataProcess::GetAddressType Method

Returns an indication of the type of data referred to by the 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 GetAddressType(
    [in] CLRDATA_ADDRESS address,
    [out] CLRDataAddressType *type
);

Parameters

address
[in] The address for which to return an indication of the type of data.

type
[out] An indication of the type of data referred to by the given address

Remarks

The provided method is part of the IXCLRDataProcess interface and corresponds to the 15th slot of the virtual method table. The IXCLRDataAppDomain* returned is used for interaction with other APIs. Note that 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