I would like to make a class where the client side (proxy) of the instantiated object can register to an event (or delegate) and be informed whenever this event is fired on the server side.
I tried directly but I get a SecurityException informing me that System.DelegateSerializationHolder cannot be serialized at this security level.
Is there a way around this?
Example:
MyClass proxy = Activator.GetObject(typeof(MyClass ), uri) as MyClass;
proxy.OnMyEvent += new MyEventHandler(this.Callback);
