Is it possible to use the configSource attributes on Custom ConfigurationElement classes in web.config?

1.5k Views Asked by At

I know it's possible to reference external configuration files for a configuration section but I'd like to go one step further and reference config files from a configuration element.

i.e.

<CustomConfigSection>
<Plugins>
<Plugin configSource="plugin.config"/>
<Plugin configSource="another_plugin.config"/>
</Plugins>
</CustomConfigSection>

1

There are 1 best solutions below

0
On