检测透明代理与实际对象引用?

发布于 2024-08-17 17:20:48 字数 61 浏览 1 评论 0原文

给定一个对象引用,是否可以以编程方式确定该对象是在当前应用程序域中创建的,还是另一个应用程序域中对象的代理?

Given an object reference, is it possible to programmatically determine if the object was created in the current appdomain or instead is a proxy to an object in another appdomain?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光病人 2024-08-24 17:20:48

尝试以下

var isProxy = RemotingServices.IsTransparentProxy(obj);

System.Runtime.Remoting.RemotingServices。 IsTransparentProxy

Try the following

var isProxy = RemotingServices.IsTransparentProxy(obj);

System.Runtime.Remoting.RemotingServices.IsTransparentProxy

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