如何在另一个应用程序域中设置静态布尔值?

发布于 2024-08-25 11:59:42 字数 130 浏览 3 评论 0原文

如何以编程方式在另一个应用程序域中设置静态布尔值?

我正在测试一个需要更改布尔值的应用程序。问题是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

是伱的 2024-09-01 11:59:42

实现此目的的唯一方法(除了 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文