远程处理 - 对象是远程的吗?
如何确定对象是本地对象还是远程对象(使用 C# 远程处理)?如果对象是远程的,则检查本地代码;如果代码是从远程执行的,则检查对象中的两者都可以。
How can I determine whether an object is local or remote (using C# remoting)? Both checking in local code if the object is remote or in the object if the code is executed from remote would be okay.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IsTransparentProxy 上的 MSDN 文档
MSDN Docs on IsTransparentProxy
我想您可以查看代理并查看它是否源自 TransparentProxy
I suppose you could look at the proxy and see if it derived from TransparentProxy