通过 httpcontext 引用配置管理器

发布于 2024-11-04 13:23:20 字数 46 浏览 7 评论 0原文

如何通过 httpcontext 获取配置管理器的引用?

谢谢

How can i get reference to the configuration manager via httpcontext?

Thanks

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

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

发布评论

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

评论(2

不语却知心 2024-11-11 13:23:20

正如 Adam 所指出的,使用:

System.Configuration.ConfigurationManager

是否在单独项目的类中并不重要。当您从 Web 项目调用代码时,ConfigurationManager 逻辑将应用于您的 Web 应用程序,而不是包含的项目。

As pointed out by Adam, use:

System.Configuration.ConfigurationManager

It doesn't matter if it is in a class in a separate project. When you call the code from your web project, the ConfigurationManager will logic will be applied to your web app, not the containing project.

路还长,别太狂 2024-11-11 13:23:20

简单地说:System.Configuration.ConfigurationManager.AppSettings[""]
(当然,在 System.Configuration 的顶部使用 using stmt - 并确保您的库有对 system.configuration 的引用)

simply: System.Configuration.ConfigurationManager.AppSettings[""]
(of course with a using stmt up top for System.Configuration - and make sure your library has a ref to system.configuration)

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