我有一个AppDomain,我用它来将模块加载到沙盒中:
class PluginLoader
{
public static AppDomain PluginSandbox;
static PluginLoader()
{
AppDomainSetup ads = new AppDomainSetup();
ads.ApplicationName = "Plugin Modules";
PermissionSet trustedLoadFromRemoteSourceGrantSet =
new PermissionSet(PermissionState.Unrestricted);
PluginSandbox =
AppDomain.CreateDomain("Plugin App Domain",
null, ads, trustedLoadFromRemoteSourceGrantSet);
}
然后,我将引入我需要的DLL并创建一个对象实例:
public IPlugin FindPlugin(string pluginName)
{
ObjectHandle handle =
PluginSandbox.CreateInstance(pluginName,
"Plugins." + pluginName);
IPlugin ip = (IPlugin)handle.Unwrap();
return ip;
}
我没有任何问题地经历了这几次.在Sandbox中获取各种对象的实例,没有任何问题.
稍后在代码中,在另一种方法中,我需要找到程序集来获取嵌入式资源(在数据文件中编译,使用ManifestResource).所以我打电话给:
Assembly [] ar = PluginSandbox.GetAssemblies();
并且错误被抛出:
A first chance exception of type 'System.IO.FileNotFoundException'
occurred in PluginRunner.dll.
Additional information: Could not load file or assembly '10wl4qso,
Version=1.0.3826.25439, culture info=neutral, PublicKeyToken=null'
or one of its dependencies. The system cannot find the file specified.
我不惊讶. ’10wl4qso’不是程序集的名称,dll或类似的东西.事实上,每次运行似乎都是伪随机的.此外,GetAssemblies的额外乐趣甚至没有记录到抛出此异常.
现在我可以在初始对象完好后立即调用GetAssemblies,而且一切都很好.但是几秒钟之后,我用另一种方法得到了这个.作为远程控制,PluginSandbox在调试器中根本没有任何有用的信息.
我在AppDomain上捕获UnhandledException和DomainUnload,但都没有被触发.
为什么我的AppDomain突然不知道它的程序集?
垃圾数据来自哪里?
我该怎么做才能防止这两种情况发生?
最佳答案 您看到的这个奇怪的命名程序集可能是由XmlSerializer生成的. XML序列化程序将输出动态程序集,以便能够快速快速序列化和反序列化特定类型.检查代码是否使用XmlSerializer,注释掉它们,看看是否再次出现问题.