How do I implement a custom interface AND MarshalByRefObject?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to return a reference of a server-side object to the client. I want
that class to implement a custom interface (there will be a number of classes
involved here and they will all support the same interface).

How can I do this? I seem to be able to implement MarshalByRefObject *or* my
custom interface, but not both. Is there no way to support interfaces in
remoting objects?

c#
 
Back
Top