System.Runtime.Remoting.RedirectionProxy.RedirectionProxy C# (CSharp) Method

RedirectionProxy() private method

private RedirectionProxy ( MarshalByRefObject proxy, Type serverType ) : System
proxy System.MarshalByRefObject
serverType System.Type
return System
        internal RedirectionProxy(MarshalByRefObject proxy, Type serverType)
        {
            _proxy = proxy;
            _realProxy = RemotingServices.GetRealProxy(_proxy);
            _serverType = serverType;
            _objectMode = WellKnownObjectMode.Singleton;
        } // RedirectionProxy