[ASP.NET Web API] Message Handler与Filter的区别

转载:Stack Overflow问题 When to use HttpMessageHandler vs ActionFilter?

The major difference between their two is their focus. Message Handlers are applied to all HTTP requests. They perform the function of an HTTP intermediary. Filters apply only to requests that are dispatched to the particular controller/action where the filter is applied.

You should use MessageHandlers when you want the behaviour to be applied to the vast majority of requests. Filters should be used when they are only applicable to certain resources.

[ASP.NET Web API] Message Handler与Filter的区别