Hi,
In my WCF service, I have methods that are currently public, but I want to hide them from the outside world but be able to use them in my WCF service.
Is internal what I'm looking at?
Hi,
In my WCF service, I have methods that are currently public, but I want to hide them from the outside world but be able to use them in my WCF service.
Is internal what I'm looking at?
All you have to do to not have the outside world ( WCF clients) know of them is to not mark them with [ServiceContract] attribute, then it doesn't matter if they are public
if you distribute the DLL with the WCF service in it you can mark the methods: