英語で読む

次の方法で共有


AppDomain.GetAssemblies メソッド

定義

アプリケーション ドメインの実行コンテキストに読み込まれているアセンブリを取得します。

C#
public System.Reflection.Assembly[] GetAssemblies ();

戻り値

Assembly[]

アプリケーション ドメイン内のアセンブリの配列。

実装

例外

アンロードされたアプリケーション ドメインで操作しようとします。

次のコード例では、メソッドを GetAssemblies 使用して、アプリケーション ドメインに読み込まれたすべてのアセンブリの一覧を取得します。 その後、アセンブリがコンソールに表示されます。

このコード例を実行するには、名前付きの CustomLibrary.dllアセンブリを作成するか、メソッドに渡されるアセンブリ名を GetAssemblies 変更する必要があります。

C#
using System;
using System.Reflection;
using System.Security.Policy;

class ADGetAssemblies
{

    public static void 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.
        Assembly[] assems = currentDomain.GetAssemblies();
    
        //List the assemblies in the current application domain.
        Console.WriteLine("List of assemblies loaded in current appdomain:");
            foreach (Assembly assem in assems)
                Console.WriteLine(assem.ToString());
    }
}

適用対象

製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Standard 2.0, 2.1