gpt4 book ai didi

c# - 如何从子部分 Web 配置 C# 获取属性?

转载 作者:行者123 更新时间:2023-12-02 01:01:00 25 4
gpt4 key购买 nike

我试图从一个小节中获取所有属性,但是一个小节有很多小节,应用程序无法识别,我该怎么办?这是我的网络配置:

<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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com