I am modifying an existing WCF service to a WEB API. In the WCF service, we have some operation behaviors that checks the validity of session id passed in SOAP header.Do we have any equivalent for Operation Behaviors in WEB API, which will get invoked before and after actual service call?
Asked
Active
Viewed 935 times
0
-
`HttpMessageHandler`s are capable of intercepting ASP.Net Web Api pipeline. – Amit Kumar Ghosh Dec 08 '15 at 12:03
1 Answers
4
In WebAPI it's called ActionFilters, please look at documentation about them

Uriil
- 11,948
- 11
- 47
- 68