This documentation is archived and is not being maintained.
Parameter::Evaluate Method
Visual Studio 2010
Updates and returns the value of the Parameter object.
Assembly: System.Web (in System.Web.dll)
Parameters
- context
- Type: System.Web::HttpContext
The current HttpContext of the request.
- control
- Type: System.Web.UI::Control
The Control the parameter is bound to. If the parameter is not bound to a control, the control parameter is ignored.
Return Value
Type: System::ObjectAn object that represents the updated and current value of the parameter.
The default implementation of the Evaluate method is to return nullptr in all cases. Classes that derive from the Parameter class override the Evaluate method to return an updated parameter value. For example, the ControlParameter object returns the value of the control that it is bound to, while the QueryStringParameter object retrieves the current name/value pair from the HttpRequest object.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: