如何在另一个应用程序域中设置静态布尔值?
如何以编程方式在另一个应用程序域中设置静态布尔值?
我正在测试一个需要更改布尔值的应用程序。问题是 bool 值作为另一个应用程序域中托管的类型的静态实例存在。
(我这样做是为了测试目的,它不会在生产代码中使用)
How do I programatically set the value of a static boolean in another app domain?
I'm testing an application where I need to change a bool value. Problem is that the bool value exists as a static instance on a type hosted in another app domain.
(I'm doing this for test purposes, it won't be used in production code)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现此目的的唯一方法(除了 IO、Socket 或远程通信)是调用
AppDomain.DoCallBack
来执行另一个 AppDomain 中的代码。有关详细信息:http://msdn.microsoft.com/ en-us/library/system.appdomain.docallback.aspx
但是您无法传递任何数据。因此,如果您只需要从一个 AppDomain 进行
Ping
来设置布尔值,则可以使用这种方法。否则,您可以在此处找到更多信息:在 AppDomain 之间共享数据The only way you can do that (apart from IO, Socket or Remoting communication) is by calling
AppDomain.DoCallBack
to execute the code in another AppDomain.For more information: http://msdn.microsoft.com/en-us/library/system.appdomain.docallback.aspx
But you cannot pass any data. So if you only need a
Ping
from one AppDomain to set the boolean value, you can use this approach. Otherwise you can find some more information here: Sharing data between AppDomains