ParameterCollection.GetValues(HttpContext, Control) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an ordered collection of Parameter object names and their corresponding values currently contained by the collection.
public:
System::Collections::Specialized::IOrderedDictionary ^ GetValues(System::Web::HttpContext ^ context, System::Web::UI::Control ^ control);
public System.Collections.Specialized.IOrderedDictionary GetValues (System.Web.HttpContext context, System.Web.UI.Control control);
member this.GetValues : System.Web.HttpContext * System.Web.UI.Control -> System.Collections.Specialized.IOrderedDictionary
Public Function GetValues (context As HttpContext, control As Control) As IOrderedDictionary
Parameters
- context
- HttpContext
The current HttpRequest that the Parameter binds to.
- control
- Control
The Control instance that is passed to each parameter's Evaluate(HttpContext, Control) method.
Returns
An IOrderedDictionary of name/value pairs.
Remarks
The control
parameter is used by Parameter objects contained in the collection to retrieve the Page and current HttpRequest object that the Parameter object binds to.
Because the IOrderedDictionary object must have uniquely named entries but the ParameterCollection collection does not require or guarantee unique Parameter object names, the implementation of this method appends a number to the end of each Name property to ensure uniqueness in the returned collection.