ICorDebugDataTarget3::GetLoadedModules Method

Gets a list of the modules that have been loaded so far.

Syntax

HRESULT GetLoadedModules(  
   [in] ULONG32 cRequestedModules,  
   [out] ULONG32 *pcFetchedModules,  
   [out, size_is(cRequestedModules), length_is(*pcFetchedModules)] ICorDebugLoadedModule *pLoadedModules[]  
);  

Parameters

cRequestedModules
[in] The number of modules for which information is requested.

pcFetchedModules
[out] A pointer to the number of modules about which information was returned.

pLoadedModules
[out] A pointer to an array of ICorDebugLoadedModule objects that provide information about loaded modules.

Remarks

Note

This method is available with .NET Native only.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: Available since 4.6, .NET Native only

See also