Re: [DOTNET] Proxy class

2002-05-23 Thread Sievert, James A
> if you can live with the fact that the destination object has > to inherit MarshalByRefObject, This isn't a strict necessity. The constructor for RealProxy takes a type that must be MBR. System.MarshalByRefObject works very nicely for this purpose. It works especially well for those classes

Re: [DOTNET] Proxy class

2002-05-23 Thread Ingo Rammer
Hi Daniel, if you can live with the fact that the destination object has to inherit MarshalByRefObject, you can work with a Sytem.Runtime.Remoting.Proxies.RealProxy implementation which would allow you to intercept the call and receive a "Message"-object which can be used for runtime tweaking of