ICorDebugAssembly3::EnumerateContainedAssemblies Method

Gets an enumerator for the assemblies contained in this assembly.

Syntax

HRESULT EnumerateContainedAssemblies(  
    ICorDebugAssemblyEnum **ppAssemblies  
);  

Parameters

ppAssemblies
[out] A pointer to the address of an ICorDebugAssemblyEnum interface object that is the enumerator.

Return Value

S_OK if this ICorDebugAssembly3 object is a container; otherwise, S_FALSE, and the enumeration is empty.

Remarks

Symbols are needed to enumerate the contained assemblies. If they aren't present, the method returns S_FALSE, and no valid enumerator is provided.

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