How to mark certain methods in WCF silverlight service?

I have a WCF silverlight service. I have some methods. I need to mark certain service methods and then define them when I get all the Reflection service methods.

MethodInfo [] methods = typeof (TypeOfTheService) .GetMethods ();

+2


a source to share


1 answer


How about not doing that. Instead, create another contract containing only those methods that you would otherwise have flagged.



+3


a source







All Articles