ExpressionBuilderCollection Class
.NET Framework 3.0
Represents a collection of ExpressionBuilder objects. This class cannot be inherited.
Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
This section provides two code examples. The first demonstrates how to declaratively specify values for several properties of the ExpressionBuilderCollection class. The second demonstrates how to use members of the ExpressionBuilderCollection class.
The following configuration file example shows how to declaratively specify values for several properties of the ExpressionBuilderCollection class.
<system.web>
<compilation>
<expressionBuilders>
<add
expressionPrefix="Resources"
type="System.Web.Compilation.ResourceExpressionBuilder"/>
<add
expressionPrefix="ConnectionStrings"
type="System.Web.Compilation.
ConnectionStringsExpressionBuilder"/>
<add expressionPrefix="AppSettings"
type="System.Web.Compilation.AppSettingsExpressionBuilder" />
</expressionBuilders>
</compilation>
</system.web>
The following code example demonstrates how to use members of the ExpressionBuilderCollection class.
System.Object
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationElementCollection
System.Web.Configuration.ExpressionBuilderCollection
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationElementCollection
System.Web.Configuration.ExpressionBuilderCollection
Community Additions
ADD
Show: