本文介绍了卸载在MEF一个DLL文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一些插件,dll文件。我的应用程序加载DLL,它运行良好。但是当我尝试删除旧的插件,以及一个新的插件更换它不允许做我的。因为它已经被应用程序加载。我发现,通过使用AppDomain中,我们可以做到这一点。但我不能够找到其中使用MEF的解决方案。
我需要它可以在MEF运行代码。下面是我的代码,用于加载插件。
//创建目录总的一个实例。它聚合其他目录
变种aggregateCatalog =新AggregateCatalog();
//建设,其中部分将提供
VAR目录路径=路径plugins文件夹的目录路径;
$ B $使用目录目录
变种directoryCatalog =新DirectoryCatalog从指定的路径可用的dll b //加载件(目录路径,* .dll文件);
//添加到总目录
aggregateCatalog.Catalogs.Add(directoryCatalog);
//克里特岛组成容器
变种集装箱=新CompositionContainer中(aggregateCatalog);
//可组合的部件都在这里创建即导入和导出组件组装这里
container.ComposeParts(本);
解决方案
Unfortunately, this is not supported by MEF. MEF was designed specifically for application extensibility, not as a general purpose plugin system which supports unloading and replacement of code at runtime.
The only way to make this work would be to use MEF within a separate AppDomain, and unload the AppDomain as a whole. The CLR itself has no support for unloading a loaded assembly other than unloading the entire AppDomain in which the assembly is opened.
这篇关于卸载在MEF一个DLL文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!