- target
- The object that contains the expression.
- entry
- The property to which the expression is bound.
- parsedData
- The object that represents parsed data as returned by ConnectionStringsExpressionBuilder.ParseExpression(string, Type, ExpressionBuilderContext).
- context
- Properties for the control or page.
The object associated with a key in the <connectionStrings> section of the Web.config file.
This method is called when an expression of the form <%$ ConnectionStrings: secureConnectionString %> is encountered in a page that is not compiled. It retrieves the appropriate value from the <connectionStrings> section of the Web.config file. This method overrides the ExpressionBuilder.EvaluateExpression(object, System.Web.UI.BoundPropertyEntry, object, ExpressionBuilderContext) method by calling the ConnectionStringsExpressionBuilder.GetConnectionString(string) method if a connection string is included in the parsedData parameter, or by calling the ConnectionStringsExpressionBuilder.GetConnectionStringProviderName(string) method if a connection string is not included in the parsedData parameter.