Click here to Skip to main content
15,884,537 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I've got a situation for a product relies on WCF.

One feature asks for configure a WCF method in order to parametrize its visibility depending on a setting value.

I mean, if a flag inside config file is true, method is operable and part of ServiceContract, if not, method cannot be accessed and does not appear on runtime.

Thanks in advance!
Posted

1 solution

each operation from the service contract is exposed in WSDL. That is how WCF works. So each client consuming service WSDL can "use" it.
If you want to hide method based on flag then use if case to execute method if flag true.
Otherwise do not execute anything.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900