4

如果我使用

Assembly assembly = Assembly.LoadFrom(file);

后来尝试使用该文件,我得到一个异常说明该文件正在使用中。

我需要将它加载到一个新的 appdomain 上。

我似乎找到的只是如何在程序集中创建实例的示例, 有没有办法加载整个程序集

我需要的是:

 (1) load the assembly into a new AppDomain from a file . 
 (2) extract an embedded  resource (xml file) from the Dll .
 (3) extract a type of class which implements an interface (which i know the interface type) .
 (4) unload the entire appdomain in order to free the file .  

2-4没问题

我似乎无法找到如何将程序集加载到新的 AppDomin中,只有创建实例的示例,这为我提供了来自 Dll 中的类的实例。

我需要整件事。

就像这个问题一样: Create instance 的另一个例子。

将 DLL 加载到单独的 AppDomain

4

1 回答 1

2

最基本的多域场景是

static void Main()
{
    AppDomain newDomain = AppDomain.CreateDomain("New Domain");
    newDomain.ExecuteAssembly("file.exe");
    AppDomain.Unload(newDomain);
}

调用ExecuteAssembly单独的域很方便,但不提供与域本身交互的能力。它还要求目标程序集是可执行文件,并强制调用者进入单个入口点。为了结合一些灵活性,您还可以将字符串或参数传递给 .exe。

我希望这有帮助。

扩展:然后尝试以下操作

AppDomainSetup setup = new AppDomainSetup();
setup.AppDomainInitializer = new AppDomainInitializer(ConfigureAppDomain);
setup.AppDomainInitializerArguments = new string[] { unknownAppPath };
AppDomain testDomain = AppDomain.CreateDomain("test", AppDomain.CurrentDomain.Evidence, setup);
AppDomain.Unload(testDomain);
File.Delete(unknownAppPath);

可以AppDomain按如下方式初始化

public static void ConfigureAppDomain(string[] args)
{
    string unknownAppPath = args[0];
    AppDomain.CurrentDomain.DoCallBack(delegate()
    {
        //check that the new assembly is signed with the same public key
        Assembly unknownAsm = AppDomain.CurrentDomain.Load(AssemblyName.GetAssemblyName(unknownAppPath));

        //get the new assembly public key
        byte[] unknownKeyBytes = unknownAsm.GetName().GetPublicKey();
        string unknownKeyStr = BitConverter.ToString(unknownKeyBytes);

        //get the current public key
        Assembly asm = Assembly.GetExecutingAssembly();
        AssemblyName aname = asm.GetName();
        byte[] pubKey = aname.GetPublicKey();
        string hexKeyStr = BitConverter.ToString(pubKey);
        if (hexKeyStr == unknownKeyStr)
        {
            //keys match so execute a method
            Type classType = unknownAsm.GetType("namespace.classname");
            classType.InvokeMember("MethodNameToInvoke", BindingFlags.InvokeMethod, null, null, null);
        }
    });
}
于 2012-04-25T13:00:52.033 回答