访问 web.config 属性(不是 appSettings)

发布于 2024-10-24 22:17:30 字数 418 浏览 1 评论 0原文

鉴于我可以向股票会员资格提供程序添加各种属性,我假设我可以对自己的提供程序实现执行相同的操作。

<add name="MyMembershipProvider" type="Portal.Infrastructure.MyMembershipProvider"
             enablePasswordRetrieval="false"
                enablePasswordReset="true"
                requiresQuestionAndAnswer="true"
                [...] />

我现在的问题是:如何在代码中访问这些值?我知道 ConfigurationManager 可用于访问 appSettings 部分中的键值对,但这是不同的。

given that I can add various attributes to the stock membership provider I assume I can do the same with my own provider implementation.

<add name="MyMembershipProvider" type="Portal.Infrastructure.MyMembershipProvider"
             enablePasswordRetrieval="false"
                enablePasswordReset="true"
                requiresQuestionAndAnswer="true"
                [...] />

My question now: How do I access these values in the code? I understand that the ConfigurationManager can be used to access key value pairs in the appSettings section but this is different.

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

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

发布评论

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

评论(1

浅听莫相离 2024-10-31 22:17:30

我不知道您尝试访问哪个部分,但一般的想法是您可以通过以下方式直接访问 WebConfig:

Configuration config = WebConfigurationManager.OpenWebConfiguration(configPath);  
// Get the object related to the <identity> section.
IdentitySection section = (IdentitySection)config.GetSection("system.web/identity");

而不是 IdentitySection 放置您的部分。

I don't know what section you trying to acces but genearl idea is that you can access WebConfig directly by:

Configuration config = WebConfigurationManager.OpenWebConfiguration(configPath);  
// Get the object related to the <identity> section.
IdentitySection section = (IdentitySection)config.GetSection("system.web/identity");

Instead of IdentitySection put your section.

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