作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从一个小节中获取所有属性,但是一个小节有很多小节,应用程序无法识别,我该怎么办?这是我的网络配置:
<configSections>
<section name="Seccion" type="ManejoConfiguracion.SeccionConfig,ManejoConfiguracion"/>
</configSections>
<Seccion>
<BD>
<add key="name" value="dbKey" />
<add key="user" value="userBD" />
<add key="pass" value="123BD" />
</BD>
<ReportingService>
<add key="name" value="Reporting" />
<add key="user" value="userReport" />
</ReportingService>
</Seccion>
</configuration>
最佳答案
呸!忘掉那些疯狂的配置对象吧。在其上使用 Linq to XML:
var seccion =
XDocument.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile)
.Root.Element("Seccion");
// Now Linq to XML until your heart's content!
var user = (string)seccion.Element("BD").Elements("add")
.Where(x => (string)x.Attribute("key") == "user")
.Single().Attribute("value");
关于c# - 如何从子部分 Web 配置 C# 获取属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28600016/
我是一名优秀的程序员,十分优秀!