使用 wpf 访问 web.config

发布于 2024-10-15 11:01:44 字数 292 浏览 0 评论 0原文

有谁能帮我弄清楚如何从 wpf 胖客户端打开 web.config 文件吗?我有一个 wpf 表单(不是 silverlight 应用程序),我希望能够浏览到目录 ( c:\test\web.config ),然后从所选 web.config 文件的 appSettings 部分加载自定义密钥。示例 将表单中的字段绑定到

web.config 文件中的 Path=Version 版本将被标识为:

<add key="Version" value="1.0 />

提前致谢

Would anyone be so kind as to help me figure out how to open a web.config file from a wpf thick client. I have a wpf form (not a silverlight app) that I would like have the ability to browse to a directory ( c:\test\web.config ) and then load custom keys from the appSettings section of the selected web.config file. Example Bind a field within my form to Path=Version

Within the web.config file Version would be identified as:

<add key="Version" value="1.0 />

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟若柳尘 2024-10-22 11:01:44

我通常更喜欢使用 ConfigurationManager 方法之一,如下所示:

http://msdn .microsoft.com/en-us/library/ms224437.aspx

或者有带有 XPath 的旧式 Xml:

XmlDocument webConfig = new XmlDocument();
webConfig.Load(dllConfigFileName);
XmlNode someNode = webConfig.SelectSingleNode("//configuration/appSettings/add[@key='someKey']");

或者较新的 LINQ to XML:

XDocument document = XDocument.Load(configFileFullName);
XElement configurationElement = document.Element("configuration");
XElement appSettingsElement = configurationElement.Element("appSettings");
List<XElement> configSettings = new List<XElement>(appSettingsElement.Descendants("add"));

I usually prefer to use one of the ConfigurationManager methods like this one:

http://msdn.microsoft.com/en-us/library/ms224437.aspx

Or there is the old style Xml with XPath:

XmlDocument webConfig = new XmlDocument();
webConfig.Load(dllConfigFileName);
XmlNode someNode = webConfig.SelectSingleNode("//configuration/appSettings/add[@key='someKey']");

Or the newer LINQ to XML:

XDocument document = XDocument.Load(configFileFullName);
XElement configurationElement = document.Element("configuration");
XElement appSettingsElement = configurationElement.Element("appSettings");
List<XElement> configSettings = new List<XElement>(appSettingsElement.Descendants("add"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文