I need to hook into the WCF operation process to execute some code right before and right after each operation.
Some context:
- I already have a custom servicehost, servicehostfactory and servicebehavior
- all my services are based on a common base class
I've been snooping around and I think using a IParameterInspector would be the best choice, but I'm not entirely sure given that the code I need to execute has nothing to with parameters...
Any clues?