Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.59 KB

icordebugframe-getstackrange-method.md

File metadata and controls

53 lines (40 loc) · 1.59 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid topic_type
Learn more about: ICorDebugFrame::GetStackRange Method
ICorDebugFrame::GetStackRange Method
03/30/2017
ICorDebugFrame.GetStackRange
mscordbi.dll
COM
ICorDebugFrame::GetStackRange
GetStackRange method, ICorDebugFrame interface [.NET Framework debugging]
ICorDebugFrame::GetStackRange method [.NET Framework debugging]
fab037cb-fda6-40fb-9367-921e435dd5a0
apiref

ICorDebugFrame::GetStackRange Method

Gets the absolute address range of this stack frame.

Syntax

HRESULT GetStackRange (
    [out] CORDB_ADDRESS      *pStart,
    [out] CORDB_ADDRESS      *pEnd
);

Parameters

pStart [out] A pointer to a CORDB_ADDRESS that specifies the starting address of the stack frame represented by this ICorDebugFrame object.

pEnd [out] A pointer to a CORDB_ADDRESS that specifies the ending address of the stack frame represented by this ICorDebugFrame object.

Remarks

The address range of the stack is useful for piecing together interleaved stack traces gathered from multiple debugging engines. The numeric range provides no information about the contents of the stack frame. It is meaningful only for comparison of stack frame locations.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: [!INCLUDEnet_current_v10plus]