17

http://msdn.microsoft.com/en-us/library/system.runtime.remoting.proxies.realproxy.gettransparentproxy%28v=VS.100%29.aspx上的文档并未指出GetTransparentProxy将返回的场景null,但是null当我打电话给我时,我得到了回报。

什么情况下会导致这种行为?

4

1 回答 1

28

没关系,解决了。让您的派生类调用具有要代理的类型的基本构造函数至关重要。RealProxy就我而言:

public class MyProxy<T> : RealProxy
{
    public MyProxy()
        : base(typeof(T))    // this was missing
    {
        ...
    }

    ...
}
于 2010-12-23T17:50:05.083 回答