tags:

views:

300

answers:

2

I have a method with custom attribute in my service. I want to read the attributes of the calling method on the server side and check if it has that attribute. How can I accomplish this?

Thanks.

+2  A: 
marc_s
A: 

Thanks for the answer.

I resolved this by simply implementing IParameterInspector instead. As the documentation states, parameter inspector works on operation level.

Marc Vitalis