System.Web
2.0.0.0
System.Configuration.ConfigurationElement
ASP.NET automatically evaluates expressions during page parsing using the class. The collection, which is made up of the expressionBuilders elements contained in the compilation section of the configuration. The contains specific values in key/value pairs.
A value is retrieved by including an expression of the form
<%$ ExpressionPrefix: ExpressionKey %>
within the page. The ExpressionPrefix maps the type of expression to be retrieved as either a common expression-builder type (that is, ) or a custom expression builder type. The ExpressionKey specifies the key used to reference the returned value.
If you choose to implement a common expression-builder type, you must map the expression builder to the associated section name in the configuration. If you choose to implement a custom expression-builder type, you must map your expression builder to your custom expression-builder class, which must derive from the class.
Retrieves a dynamic resource during compilation.
Constructor
To be added.
Initializes a new instance of the class.
A string that identifies the type of expression to retrieve.
A string that specifies the expression type.
2.0.0.0
Property
System.Configuration.ConfigurationProperty("expressionPrefix", DefaultValue="", Options=System.Configuration.ConfigurationPropertyOptions.IsRequired | System.Configuration.ConfigurationPropertyOptions.IsKey)
System.Configuration.StringValidator(MinLength=1)
System.String
To be added.
The maps the expression to the associated section name in the configuration for common expression types, or maps the expression to the custom expression class.
Gets or sets a string that identifies the type of expression to retrieve.
2.0.0.0
Property
System.Configuration.ConfigurationPropertyCollection
To be added.
To be added.
To be added.
2.0.0.0
Property
System.Configuration.ConfigurationProperty("type", DefaultValue="", Options=System.Configuration.ConfigurationPropertyOptions.IsRequired)
System.Configuration.StringValidator(MinLength=1)
System.String
To be added.
The specifies the type of object used to determine the value of the expression. The type can specify either a section within the configuration, or a custom class.
Gets or sets a string that specifies the expression type.
2.0.0.0