ControlParameter::Evaluate Method (HttpContext^, Control^)
Updates and returns the value of the ControlParameter object.
Assembly: System.Web (in System.Web.dll)
public protected: virtual Object^ Evaluate( HttpContext^ context, Control^ control ) override
Parameters
- context
-
Type:
System.Web::HttpContext^
The current HttpContext of the request.
- control
-
Type:
System.Web.UI::Control^
The Control that the parameter is bound to.
Return Value
Type: System::Object^An Object that represents the updated and current value of the parameter.
| Exception | Condition |
|---|---|
| ArgumentException | The ControlID property is not set. - or - The PropertyName property is not set and the Control identified by the ControlID property is not decorated with a ControlValuePropertyAttribute attribute. |
| InvalidOperationException | Control::FindControl does not return the specified control. - or - The control identified by the ControlID property does not support the property named by PropertyName. |
The ControlParameter object attempts to bind to the Control object and property every time the Evaluate method is called. The Evaluate method returns the value of the control's property that is identified by the combination of the ControlID and PropertyName properties.
The ControlParameter class never uses the DefaultValue property, which is inherited from Parameter, when binding to a control's property value.
Note |
|---|
In this implementation of the method, the context parameter is ignored. If the control parameter is null, null is returned. |
Available since 2.0
