如何从另一个的AppDomain调用类的方法 [英] how to call a method of a class from another appDomain

查看:383
本文介绍了如何从另一个的AppDomain调用类的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序想要调用一类,它是从另一个AppDomain中的方法。

my application want to call a method of a class that is from another AppDomain.

       AppDomain env = AppDomain.CreateDomain(
            "test",
            null,
            new AppDomainSetup() { ApplicationName = "test" }
            );

        Assembly a = Assembly.LoadFrom("d:\\testenv1\\test2.dll");
        //env.AssemblyResolve += new ResolveEventHandler(env_AssemblyResolve);
        env.Load(a.FullName);

        ObjectHandle o = env.CreateInstance(a.FullName, "Test2.Class1");

现在我有Test2.Class1的对象句柄,但我不知道如何invode Class1类的动作的方法。

now i have the object handle of the Test2.Class1, but i have no idea how to invode the "action" method of the Class1 class.

动作的方法很喜欢这样的:

the "action" method likes this:

    public void action()
    {
        Console.WriteLine(AppDomain.CurrentDomain.FriendlyName + " ok");
    }

我试图用o.unwrap()方法来获取对象的引用,但似乎对象已经转移到当前域中,因此,行动方法的输出显示当前域名。

i tried to use o.unwrap() method to get the reference of the object, but it seems the object has been transferred into the current domain, so the output of the "action" method prints the current domain name.

谢谢, 大卫

推荐答案

标记需要使用跨AppDomain的沟通为的 MarshalByRefObject的

Mark the object that you want to use for cross appdomain communication as MarshalByRefObject.

这篇关于如何从另一个的AppDomain调用类的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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