有没有办法在配置中将我的自定义部分标记为“可以选择存在”

时间:2012-12-13 15:01:30

标签: .net configuration web-config app-config configuration-files

  

可能重复:
  Unable to create a custom section for web.config

我制作了一个自定义配置部分,我希望它可选择存在。这是默认设置还是如果您定义自定义配置部分, 是否存在于配置文件中?

换句话说,我声明了configsections部分:

<configSections>
<section
        name="MembershipProviders"
        type="MyApp.BusinessObjects.MembershipProviderFactory.MembershipProvidersSection"
        allowLocation="true"
        allowDefinition="Everywhere"
      />
</configSections>

但我的web.config中没有与该声明相对应的任何部分。

但我确实有声明这些部分的类。

0 个答案:

没有答案