1.

What are Exception filters in ASP.NET Web API?

Answer»

Exception filter is GENERALLY used to HANDLE all unhandled exceptions that are generated in web API. It implements IExceptionFilters interface. It is the easiest and most flexible to implement. This filter is executed whenever the CONTROLLER method THROWS any unhandled exception at any stage that is not an HttpResponseExecption exception. 



Discussion

No Comment Found