如何重新加载的.NET应用程序域的组件? [英] How to reload an assembly for a .NET Application Domain?

查看:199
本文介绍了如何重新加载的.NET应用程序域的组件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们正在加载的组件(一个DLL),该读取的配置文件。我们需要修改配置文件,然​​后重新加载程序集。我们看到,加载组件的第二时间之后,有在配置没有变化。 任何人看到这里有什么问题?我们离开读取配置文件中的细节。

We are loading an assembly (a DLL) which reads a configuration file. We need to change the configuration file and then re-load the assembly. We see that after loading the assembly the 2nd time, there is no change in the configuration. Anyone see what is wrong here? We left out the details of reading in the configuration file.

AppDomain subDomain;
string assemblyName = "mycli";
string DomainName = "subdomain"; 
Type myType;
Object myObject;

// Load Application domain + Assembly
subDomain = AppDomain.CreateDomain( DomainName,
                                    null,
                                    AppDomain.CurrentDomain.BaseDirectory,
                                    "",
                                    false);

myType = myAssembly.GetType(assemblyName + ".mycli");
myObject = myAssembly.CreateInstance(assemblyName + ".mycli", false, BindingFlags.CreateInstance, null, Params, null, null);

// Invoke Assembly
object[] Params = new object[1];
Params[0] = value;
myType.InvokeMember("myMethod", BindingFlags.InvokeMethod, null, myObject, Params);

// unload Application Domain
AppDomain.Unload(subDomain);

// Modify configuration file: when the assembly loads, this configuration file is read in

// ReLoad Application domain + Assembly
// we should now see the changes made in the configuration file mentioned above

推荐答案

请参阅下面的2个链接一个答案:

Please see the following 2 links for an answer:

  • <一个href="http://www.devsource.com/c/a/Using-VS/Dynamic-Plugins-Using-the-$c$cAppDomain$c$c-Class-to-Load-and-Unload-$c$c/"相对=nofollow>动态由Jon Shemitz 插件
  • <一个href="http://blogs.claritycon.com/blog/2007/06/using-appdomain-to-load-and-unload-dynamic-assemblies/"相对=nofollow>使用的AppDomain加载和卸载动态组件由史蒂夫· 霍尔斯塔德

这篇关于如何重新加载的.NET应用程序域的组件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆