1

我正在尝试使用AppDomain运行时加载和卸载程序集。在实现程序集加载之前,我试图让 MSDN 上的示例在我的应用程序中工作,但我遇到了问题 - DoCallback-invokation 失败并出现异常

无法加载文件或程序集“[MyPluginAssembly]、Version=1.0.0.0、Culture=neutral、PublicKeyToken=null”或其依赖项之一。该系统找不到指定的文件。

我的程序集 ( [MyPluginAssembly]) 正在运行,由主机应用程序加载(即它是一个插件)。插件AppDomain似乎是应用程序域(即它没有在单独的域中沙箱化)。我已经尝试在新域中加载条目/调用/执行程序集以确保[MyPluginAssembly]已加载,但即使这些调用返回非空值,我仍然会收到上述异常。

我使用的代码(如MSDN 上的示例+ 加载“父”程序集的代码):

public class PingPong : MarshalByRefObject
{
    private string greetings = "PING!";

    public static void Main()
    {
        AppDomain otherDomain = AppDomain.CreateDomain("otherDomain");
        // All of these Load()-calls returns non-null
        Assembly entryAssembly = otherDomain.Load(Assembly.GetEntryAssembly().GetName());
        Assembly callingAssembly = otherDomain.Load(Assembly.GetCallingAssembly().GetName());
        Assembly executingAssembly = otherDomain.Load(Assembly.GetExecutingAssembly().GetName());

        PingPong pp = new PingPong();
        pp.MyCallBack();
        pp.greetings = "PONG!";
        otherDomain.DoCallBack(new CrossAppDomainDelegate(pp.MyCallBack));

        // Output: 
        //   PING! from defaultDomain 
        //   PONG! from defaultDomain
    }

    // Callback will always execute within defaultDomain due to inheritance from 
    // MarshalByRefObject 
    public void MyCallBack()
    {
        string name = AppDomain.CurrentDomain.FriendlyName;
        if (name == AppDomain.CurrentDomain.SetupInformation.ApplicationName)
        {
            name = "defaultDomain";
        }
        Console.WriteLine(greetings + " from " + name);
    }
}

什么情况会导致我得到异常?

4

1 回答 1

1

您应该查看CreateInstanceFromAndUnwrap方法。它适用于像您这样的沙盒加载项方案。System.AddIn (MAF) 正在使用此方法加载加载项管道段。

于 2012-09-25T15:07:06.710 回答