列出外部配置文件中的连接字符串
本文关键字:连接 字符串 配置文件 外部 | 更新日期: 2023-09-27 18:09:13
在我的App。配置,我有一个外部配置文件的引用,包含企业库:
的连接字符串<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>
是否有一种方法来列出这个文件中的所有连接字符串?
app.config只是一个XML文件,所以你可以使用XDocument打开并解析它