Adds all form input values sent with a GET request
Namespace:
RainWorx.FrameWorx.MVC.HelpersAssembly: RainWorx.FrameWorx.MVC (in RainWorx.FrameWorx.MVC.dll) Version: 3.5
Syntax
C#
public static void AddAllQueryStringValues( this UserInput userInput, Controller controller, IEnumerable<string> exceptionKeys )
Parameters
- userInput
- Type: RainWorx.FrameWorx.DTOUserInput
the user input container object - controller
- Type: Controller
a referernce to the controller handling the request - exceptionKeys
- Type: System.Collections.GenericIEnumerableString
collection of input keys that should be ignored
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type UserInput. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also