Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.93 KB

icordebugprocess5-gettypelayout-method.md

File metadata and controls

56 lines (41 loc) · 1.93 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid topic_type
Learn more about: ICorDebugProcess5::GetTypeLayout Method
ICorDebugProcess5::GetTypeLayout Method
03/30/2017
ICorDebugProcess5.GetTypeLayout
mscordbi.dll
COM
ICorDebugProcess5::GetTypeLayout
ICorDebugProcess5::GetTypeLayout method [.NET Framework debugging]
GetTypeLayout method, ICorDebugProcess5 interface [.NET Framework debugging]
bd62f5d1-e874-41f1-81e5-a29a7572c15d
apiref

ICorDebugProcess5::GetTypeLayout Method

Gets information about the layout of an object in memory based on its type identifier.

Syntax

HRESULT GetTypeLayout(    [in] COR_TYPEID id,     [out] COR_TYPE_LAYOUT *pLayout);  

Parameters

id
[in] A COR_TYPEID token that specifies the type whose layout is desired.

pLayout
[out] A pointer to a COR_TYPE_LAYOUT structure that contains information about the layout of the object in memory.

Remarks

The ICorDebugProcess5::GetTypeLayout method provides information about an object based on its COR_TYPEID, which is returned by a number of other ICorDebugProcess5 methods. The information is provided by a COR_TYPE_LAYOUT structure that is populated by the method.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: [!INCLUDEnet_current_v45plus]

See also