IXCLRDataProcess Interface

Provides methods for querying information about a process.

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.

Methods

Method Description
GetRuntimeNameByAddress Gets a name for the given address.
GetAppDomainByUniqueId Gets an AppDomain in a process by its unique id.
StartEnumModules Provides a handle to enumerate the modules of a process.
EnumModule Enumerates the modules of this process.
EndEnumModules Releases the resources used by internal iterators used during module enumeration.
StartEnumMethodInstancesByAddress Provides a handle to enumerate the method instances of AppDomain starting at a given address.
EnumMethodInstanceByAddress Enumerates the method instances of this process starting at an address offset.
EndEnumMethodInstancesByAddress Releases the resources used by internal iterators used during instance enumeration.

Remarks

This interface lives inside the runtime and is not exposed through any headers or library files. However, it's a COM interface that derives from IUnknown with GUID 5c552ab6-fc09-4cb3-8e36-22fa03c798b7 that can be obtained through the usual COM mechanisms.

Requirements

Platforms: See System Requirements. Header: None
Library: None
.NET Framework Versions: Available since 4.7

See also