ActionFilterAttribute is a hybrid abstract class that implements an Attribute, an IActionFilter, and an IResultFilter.
In my application (ASP.NET MVC 3) I have a BaseController class that all my Controllers inherit and in that BaseController …
c# asp.net-mvc authorization actionfilterattribute authorize-attributeI've got an API method where the Id parameter is annotated with CacheType attribute public Object Get([CacheType(CacheTypes.Venue)]…
c# api actionfilterattributeI understand await waits for a task (an awaitable) to complete. But I'm confused about what that actually means. The …
asp.net-web-api async-await actionfilterattributeI need to access the currently logged in user in my action filter. The identity is set by a DelegatingHandler …
authentication asp.net-web-api actionfilterattribute iprincipalI am trying to do some stuff after my controller is done with the action at OnActionExecuted. However the method …
asp.net-mvc asp.net-web-api actionfilterattribute onactionexecutedI'm trying to set a header with a simple key/value-pair and want to read this from my API. So …
c# authentication asp.net-web-api request actionfilterattributeActually I have an application that is using a WebService to retrieve some clients information. So I was validating the …
asp.net-mvc post httprequest actionfilterattribute