AppDomain::GetAssemblies Method
Gets the assemblies that have been loaded into the execution context of this application domain.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: array<System.Reflection::Assembly>An array of assemblies in this application domain.
Implements
_AppDomain::GetAssemblies()| Exception | Condition |
|---|---|
| AppDomainUnloadedException | The operation is attempted on an unloaded application domain. |
The following code example uses the GetAssemblies method to get a list of all assemblies that have been loaded into the application domain. The assemblies are then displayed to the console.
To run this code example, you need to create an assembly named CustomLibrary.dll, or change the assembly name that is passed to the GetAssemblies method.
using namespace System; using namespace System::Reflection; using namespace System::Security::Policy; //for Evidence Object int main() { AppDomain^ currentDomain = AppDomain::CurrentDomain; //Provide the current application domain evidence for the assembly. Evidence^ asEvidence = currentDomain->Evidence; //Load the assembly from the application directory using a simple name. //Create an assembly called CustomLibrary to run this sample. currentDomain->Load( "CustomLibrary", asEvidence ); //Make an array for the list of assemblies. array<Assembly^>^assems = currentDomain->GetAssemblies(); //List the assemblies in the current application domain. Console::WriteLine( "List of assemblies loaded in current appdomain:" ); System::Collections::IEnumerator^ myEnum = assems->GetEnumerator(); while ( myEnum->MoveNext() ) { Assembly^ assem = safe_cast<Assembly^>(myEnum->Current); Console::WriteLine( assem ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.