AppSettingsExpressionEditor.EvaluateExpression Method
Assembly: System.Design (in system.design.dll)
public: virtual Object^ EvaluateExpression ( String^ expression, Object^ parseTimeData, Type^ propertyType, IServiceProvider^ serviceProvider ) override
public Object EvaluateExpression ( String expression, Object parseTimeData, Type propertyType, IServiceProvider serviceProvider )
public override function EvaluateExpression ( expression : String, parseTimeData : Object, propertyType : Type, serviceProvider : IServiceProvider ) : Object
Not applicable.
Parameters
- expression
An application setting expression string to evaluate. expression does not include the AppSettings expression prefix.
- parseTimeData
An object containing additional parsing information for evaluating expression.
- propertyType
The control property type.
- serviceProvider
A service provider implementation supplied by the designer host, used to obtain additional design-time services.
Return Value
The object referenced by expression, if the expression evaluation succeeded; otherwise, a null reference (Nothing in Visual Basic).The EvaluateExpression method looks up the application setting that is specified by expression, and then returns the value of the application setting.
The visual designer uses the EvaluateExpression method to evaluate an application setting expression and provide the design-time value for an associated control property. The visual designer calls the EvaluateExpression method with the expression string, and uses the evaluated expression result to assign control property values that are rendered on the design surface.
At run time, the page parser uses the EvaluateExpression and GetCodeExpression methods of the corresponding AppSettingsExpressionBuilder implementation to evaluate an expression and provide the run-time value for an associated control property.
Reference
AppSettingsExpressionEditor ClassAppSettingsExpressionEditor Members
System.Web.UI.Design Namespace
Configuration.AppSettings
System.Web.Compilation.AppSettingsExpressionBuilder
System.Web.UI.Design.ExpressionEditorSheet
System.Web.Compilation.ExpressionBuilder
HtmlControlDesigner.Expressions
System.Web.Compilation.ExpressionEditorAttribute