C# Class Rebel.Cms.Web.Mvc.ActionFilters.QueryStringFilterAttribute

Allows an Action to execute with an arbitrary number of QueryStrings
Just like you can POST an arbitrary number of parameters to an Action, you can't GET an arbitrary number but this will allow you to do it http://stackoverflow.com/questions/488061/passing-multiple-parameters-to-controller-in-asp-net-mvc-also-generating-on-the
Inheritance: System.Web.Mvc.ActionFilterAttribute
Mostra file Open project: RebelCMS/rebelcmsxu5

Public Methods

Method Description
OnActionExecuting ( System.Web.Mvc.ActionExecutingContext filterContext ) : void
QueryStringFilterAttribute ( string parameterName ) : System

Method Details

OnActionExecuting() public method

public OnActionExecuting ( System.Web.Mvc.ActionExecutingContext filterContext ) : void
filterContext System.Web.Mvc.ActionExecutingContext
return void

QueryStringFilterAttribute() public method

public QueryStringFilterAttribute ( string parameterName ) : System
parameterName string
return System