Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

AssemblyBuilder::GetReferencedAssemblies Method ()

.NET Framework (current version)
 

Gets an incomplete list of AssemblyName objects for the assemblies that are referenced by this AssemblyBuilder.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual array<AssemblyName^>^ GetReferencedAssemblies() override

Return Value

Type: array<System.Reflection::AssemblyName^>^

An array of assembly names for the referenced assemblies. This array is not a complete list.

This method does not return a complete list of referenced assemblies. For example, if you apply a custom attribute to the AssemblyBuilder, the assembly in which the attribute was defined is included in the list returned by this method. However, if you use a Type object to specify the type of a method parameter, that type is not included.

To get a complete list of referenced assemblies, save the assembly, load it into another application domain, and call the Assembly::GetReferencedAssemblies method.

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft