在 wpf Web 应用程序中加载配置文件

发布于 2024-12-01 07:03:29 字数 593 浏览 2 评论 0原文

我有一个 WPF 浏览器应用程序,我试图在其中加载配置文件。

由于应用程序部署为 xbap,它无法访问本地文件系统,因此我需要将配置文件编译为程序集中的资源。

现在,我无法在浏览器应用程序中加载配置文件,因为 ExeConfiguationFileMap 类仅采用文件系统路径而不是 Pack URI。

我该如何解决这个问题?

这就是我的代码的样子。

let filemap = new ExeConfigurationFileMap()        
filemap.ExeConfigFilename <- (new System.Uri(@"pack://application:,,,/PSAT.PSATResources;component\resources\config\app.config")).LocalPath
TMDBConnection.m_config <- System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(filemap, System.Configuration.ConfigurationUserLevel.None)

I have a WPF Browser application in which I am trying to load a configuration file.

As the application is deployed as an xbap it does not have access to the the local filesystem and therefore I need to compile the config file as a resource within the assembly.

Now, I am not able to load the config file in the browser application as the ExeConfiguationFileMap class only takes a file system path not a Pack URI.

How do I resolve this issue?

This is what my code looks like.

let filemap = new ExeConfigurationFileMap()        
filemap.ExeConfigFilename <- (new System.Uri(@"pack://application:,,,/PSAT.PSATResources;component\resources\config\app.config")).LocalPath
TMDBConnection.m_config <- System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(filemap, System.Configuration.ConfigurationUserLevel.None)

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

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

发布评论

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

评论(1

调妓 2024-12-08 07:03:29

好消息:
这会将您的配置文件加载到流(sri.Stream)中,您可以从中解析配置文件并读取您需要的值。

StreamResourceInfo sri = Application.GetResourceStream(new Uri(path));

坏消息:
您无法将配置文件加载到 ConfigurationManager 中。

从流而不是文件加载配置文件

Good News:
This will load your config file into a stream (sri.Stream), from which you can parse the config file and read the values that you need.

StreamResourceInfo sri = Application.GetResourceStream(new Uri(path));

Bad News:
You can't load the configuration file into the ConfigurationManager.

Load configuration file from stream instead of file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文