Is it possible to register a custom ExpressionBuilder
class programmatically during application startup?
The equivalent web.config
declaration is obviously:
<system.web>
<compilation>
<expressionBuilders>
<add expressionPrefix="MyPrefix" type="MyNamespace.MyExpressionBuilder">
</expressionBuilders>
</compilation>
</system.web>
How would I register this dynamically either during a custom HTTP module Init()
, application startup, or BeginRequest
, without modifying the web.config
?
I found the ExpressionBuilderCollection Class
Which included the following example
The important part being
The above would be equivalent to this configuration sample.
This opens up the ability to search first for your custom builder and add it if necessary, check versions...etc.
Update addressing concerns about modifying config file
After reviewing the .net reference source it looks like the page parser loads the expression builders directly from config via the internal ExpressionBuilder.GetExpressionBuilder.
I have not been able to find any other extensibility points other than what has been shown so far when one would be able to inject custom builders programmaticaly.
Also given the closed source nature of System.Web I doubt there will be one any time in the future.