CorDebugExceptionObjectStackFrame Structure
Represents stack frame information from an exception object.
Syntax
typedef struct CorDebugExceptionObjectStackFrame {
ICorDebugModule* pModule;
CORDB_ADDRESS ip;
mdMethodDef methodDef;
BOOL isLastForeignExceptionFrame;
} CorDebugExceptionObjectStackFrame;
Members
Member | Description |
---|---|
pModule |
A pointer to the ICorDebugModule object for the current frame. |
ip |
The value of the instruction pointer (EIP/RIP) for the current frame. |
methodDef |
The method token for the current frame. |
isLastForeignExceptionFrame |
A value that indicates whether the frame is the last frame in a foreign exception. |
Remarks
The caller must release the pointer to the ICorDebugModule object once it is no longer in use.
Requirements
Platforms: See System Requirements.
Header: CorDebug.idl, CorDebug.h
Library: CorGuids.lib
.NET Framework Versions: Available since 4.5
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.