See Also: RealProxy Members
The System.Runtime.Remoting.Proxies.RealProxy class is the abstract base class from which proxies must derive.
A client that uses an object across any kind of a remoting boundary is actually using a transparent proxy for the object. The transparent proxy provides the illusion that the actual object resides in the client's space. It achieves this by forwarding calls made on it to the real object using the remoting infrastructure.
The transparent proxy is itself housed by an instance of a managed runtime class of type System.Runtime.Remoting.Proxies.RealProxy. The System.Runtime.Remoting.Proxies.RealProxy implements a part of the functionality that is needed to forward the operations from the transparent proxy. Note that a proxy object inherits the associated semantics of managed objects such as garbage collection, support for fields and methods, and can be extended to form new classes. The proxy has a dual nature: it acts as an object of the same class as the remote object (transparent proxy), and it is a managed object itself.
A proxy object can be used without regard to any remoting subdivisions within a AppDomain.
This class makes a link demand and an inheritance demand at the class level. A System.Security.SecurityException is thrown when either the immediate caller or the derived class does not have infrastructure permission. For details about security demands, see [<topic://cpconLinkDemands>] and [<topic://cpconInheritanceDemands>].