In ASP.
Given the following code: public class MyActionFilter : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext filterContext) { var a = filterContext.ActionParameters["someKey"]; var …
.net asp.net-mvc asp.net-mvc-4 asp.net-mvc-routing action-filterI have a Web API application that I need to get ahold of the return value of some of the …
c# asp.net-web-api action-filterI have a scenario whereby with every page request I must check the session of the presence of a particular …
asp.net asp.net-mvc action-filterI'm using Unity to instantiate a new class into the controller constructor and save the injected class in a property …
asp.net-mvc action-filterI made a new action filter (attribute, similar to [Authorize]) which authorizes access to a controller action based on a …
c# .net asp.net-mvc controller-action action-filterI am developing an application in asp.net MVC3 and I have the following questions: When should I write an …
asp.net-mvc httpmodule action-filterI'm using Action Filter in MVC 3. My question is if I can crafting the model before it's passed to the …
asp.net-mvc asp.net-mvc-3 model-view-controller action-filterI have an action filter that is responsible for placing some common information into the ViewBag for use by all …
asp.net-mvc asp.net-mvc-3 action-filter viewbagI wish to create an object per http request within an ActionFilter and pass this object to the controller. So …
asp.net-web-api action-filterI want to make sure that a particular parameter in the QueryString, in my case the request_id is propagated …
asp.net asp.net-mvc asp.net-mvc-3 action-filter redirecttoaction