Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains information about the functions that are currently active in a thread's frames. This structure is used by the ICorDebugThread2::GetActiveFunctions method.
Syntax
typedef struct _COR_ACTIVE_FUNCTION {
ICorDebugAppDomain *pAppDomain;
ICorDebugModule *pModule;
ICorDebugFunction2 *pFunction;
ULONG32 ilOffset;
ULONG32 flags;
} COR_ACTIVE_FUNCTION;
Members
| Member | Description |
|---|---|
pAppDomain |
Pointer to the application domain owner of the ilOffset field. |
pModule |
Pointer to the module owner of the ilOffset field. |
pFunction |
Pointer to the function owner of the ilOffset field. |
ilOffset |
The common intermediate language (CIL) offset of the frame. |
flags |
Reserved for future extensibility. |
Requirements
Platforms: See .NET supported operating systems.
Header: CorDebug.idl
Library: CorGuids.lib
.NET versions: Available since .NET Framework 2.0
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.