hiding interfaces...

  • Thread starter Thread starter Nando
  • Start date Start date
N

Nando

I'm developing an application based on the old client-server pattern. in
order for the server object to do its work the client objects has to
implement an interface. However the the client object have to perform tasks
in other sections of the application, some of the methods of the interface
shouldn't be used by anyone else but the server.

Is it posible to hide interface implemented methods to code other than the
server?

Thanks in advance,
Nando
 
I think you need to implement a second interface for the internal functions and mark that interface as internal.
 
Back
Top