什么情况下`RealProxy.GetTransparentProxy()`会返回`null`?
文档位于 http://msdn.microsoft.com/en-us/library/system.runtime.remoting.proxies.realproxy.gettransparentproxy%28v=VS.100%29.aspx 并不表示以下情况: GetTransparentProxy
将返回 null
,但当我调用它时,我得到一个 null
。
什么情况下会导致这种行为?
The documentation at http://msdn.microsoft.com/en-us/library/system.runtime.remoting.proxies.realproxy.gettransparentproxy%28v=VS.100%29.aspx doesn't indicate a scenario where GetTransparentProxy
will return null
, but I'm getting a null
back when I call it.
What circumstances will cause this behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系,解决了。让您的
RealProxy
派生类使用要代理的类型调用基本构造函数,这一点至关重要。就我而言:Nevermind, solved it. Its critical to have your
RealProxy
derived class call the base constructor with the type to be proxied. In my case: