列出外部配置文件

时间:2016-09-28 07:30:42

标签: c# .net vb.net enterprise-library

在我的 App.config 中,我引用了一个外部配置文件,其中包含企业库的连接字符串:

<enterpriseLibrary.ConfigurationSource selectedSource="File Configuration Source">
    <sources>
        <add name="File Configuration Source" type="Microsoft.Practices.EnterpriseLibrary.Common.Configuration.FileConfigurationSource, Microsoft.Practices.EnterpriseLibrary.Common, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" 
            filePath="\\path\to\my\Connections.config" />
    </sources>
</enterpriseLibrary.ConfigurationSource>

有没有办法列出这个文件中的所有连接字符串?

1 个答案:

答案 0 :(得分:1)

app.config只是一个XML文件,因此您可以使用XDocument打开并解析它。