ASP.NET MVC 自定义配置 GetSection returns null
ASP.NET MVC Custom configuration GetSection returns null
我正在使用 .net Framework 4.5 开发继承的 ASP.NET MVC 4 项目。
我们添加了一个新的配置部分文件和相关的 class 文件,据我们所知(docs.Microsoft 和其他在线指南)它设置正确。
问题
ConfigurationManager.GetSection()
returns 空。
根据文档,如果该部分不存在,则此 returns 为 null。解决这个问题很麻烦。
代码
该网站是一个 ASP.NET Web 应用程序。属性 window 将程序集名称设置为 Client.Project.UI.Base(这是已发布的 bin 中的 DLL)。这是用于 web.config.
中配置类型 FQN 和程序集的程序集名称
注意:配置部分 SupportCaseConfiguration 最初位于单独的文件中,而 SupportTickets 部分仅指定了 configSource。这已移入 web.config 以减少故障排除时的潜在问题数量。
web.config:
<configSections>
<!-- define type for new section -->
<section name="SupportTickets" type="Client.Project.UI.Base.Infrastructure.Services.SupportCaseConfigurationSection, Client.Project.UI.Base"/>
</configSections>
<!-- new config section -->
<SupportTickets>
<SupportCaseConfiguration>
<caseTypes>
<add name="tenant.TestCase" label="Test Case" recipient="email_here" ccList="" bccList="" />
</caseTypes>
</SupportCaseConfiguration>
</SupportTickets>
SupportCaseConfiguration.cs:
namespace Client.Project.UI.Base.Infrastructure.Services
{
using System.Configuration;
//Extend the ConfigurationSection class.
public class SupportCaseConfigurationSection : ConfigurationSection
{
[ConfigurationProperty("caseTypes", IsDefaultCollection = true)]
public CaseTypeElementCollection CaseTypes
{
get { return (CaseTypeElementCollection)this["caseTypes"]; }
}
}
//Extend the ConfigurationElementCollection class.
[ConfigurationCollection(typeof(CaseTypeElement))]
public class CaseTypeElementCollection : ConfigurationElementCollection
{
public CaseTypeElement this[int index]
{
get { return (CaseTypeElement)BaseGet(index); }
set
{
if (BaseGet(index) != null)
BaseRemoveAt(index);
BaseAdd(index, value);
}
}
protected override ConfigurationElement CreateNewElement()
{
return new CaseTypeElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((CaseTypeElement)element).Name;
}
}
//Extend the ConfigurationElement class. This class represents a single element in the collection.
public class CaseTypeElement : ConfigurationElement
{
[ConfigurationProperty("name", IsRequired = true)]
public string Name
{
get { return (string)this["name"]; }
set { this["name"] = value; }
}
[ConfigurationProperty("label", IsRequired = true)]
public string Label
{
get { return (string)this["label"]; }
set { this["label"] = value; }
}
[ConfigurationProperty("recipient", IsRequired = true)]
public string Recipient
{
get { return (string)this["recipient"]; }
set { this["recipient"] = value; }
}
[ConfigurationProperty("ccList", IsRequired = true)]
public string CcList
{
get { return (string)this["ccList"]; }
set { this["ccList"] = value; }
}
[ConfigurationProperty("bccList", IsRequired = true)]
public string BccList
{
get { return (string)this["bccList"]; }
set { this["bccList"] = value; }
}
}
}
在其他地方,正在获取新的配置数据:
SupportCaseConfigurationSection supportTicketsConfigurationSection = ConfigurationManager.GetSection("SupportCaseConfiguration") as SupportCaseConfigurationSection;
网站正在本地发布,我可以附加调试器以确保使用最新版本的文件。我可以在已发布的 web.config.
中看到配置部分
我一直在看这个我再也看不出有什么不对劲了。对我来说一切都很好...
任何想法、故障排除技巧甚至指出我是个布偶都会很有用。
干杯。
我只能假设问题与站点程序集中的配置 类 有关。
即使尝试了在线示例,复制粘贴到项目中,也没有成功。
一旦我将配置 section/element 类 放在一个单独的项目中(移出网站项目),它就开始工作了。
我正在使用 .net Framework 4.5 开发继承的 ASP.NET MVC 4 项目。
我们添加了一个新的配置部分文件和相关的 class 文件,据我们所知(docs.Microsoft 和其他在线指南)它设置正确。
问题
ConfigurationManager.GetSection()
returns 空。
根据文档,如果该部分不存在,则此 returns 为 null。解决这个问题很麻烦。
代码
该网站是一个 ASP.NET Web 应用程序。属性 window 将程序集名称设置为 Client.Project.UI.Base(这是已发布的 bin 中的 DLL)。这是用于 web.config.
中配置类型 FQN 和程序集的程序集名称注意:配置部分 SupportCaseConfiguration 最初位于单独的文件中,而 SupportTickets 部分仅指定了 configSource。这已移入 web.config 以减少故障排除时的潜在问题数量。
web.config:
<configSections>
<!-- define type for new section -->
<section name="SupportTickets" type="Client.Project.UI.Base.Infrastructure.Services.SupportCaseConfigurationSection, Client.Project.UI.Base"/>
</configSections>
<!-- new config section -->
<SupportTickets>
<SupportCaseConfiguration>
<caseTypes>
<add name="tenant.TestCase" label="Test Case" recipient="email_here" ccList="" bccList="" />
</caseTypes>
</SupportCaseConfiguration>
</SupportTickets>
SupportCaseConfiguration.cs:
namespace Client.Project.UI.Base.Infrastructure.Services
{
using System.Configuration;
//Extend the ConfigurationSection class.
public class SupportCaseConfigurationSection : ConfigurationSection
{
[ConfigurationProperty("caseTypes", IsDefaultCollection = true)]
public CaseTypeElementCollection CaseTypes
{
get { return (CaseTypeElementCollection)this["caseTypes"]; }
}
}
//Extend the ConfigurationElementCollection class.
[ConfigurationCollection(typeof(CaseTypeElement))]
public class CaseTypeElementCollection : ConfigurationElementCollection
{
public CaseTypeElement this[int index]
{
get { return (CaseTypeElement)BaseGet(index); }
set
{
if (BaseGet(index) != null)
BaseRemoveAt(index);
BaseAdd(index, value);
}
}
protected override ConfigurationElement CreateNewElement()
{
return new CaseTypeElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((CaseTypeElement)element).Name;
}
}
//Extend the ConfigurationElement class. This class represents a single element in the collection.
public class CaseTypeElement : ConfigurationElement
{
[ConfigurationProperty("name", IsRequired = true)]
public string Name
{
get { return (string)this["name"]; }
set { this["name"] = value; }
}
[ConfigurationProperty("label", IsRequired = true)]
public string Label
{
get { return (string)this["label"]; }
set { this["label"] = value; }
}
[ConfigurationProperty("recipient", IsRequired = true)]
public string Recipient
{
get { return (string)this["recipient"]; }
set { this["recipient"] = value; }
}
[ConfigurationProperty("ccList", IsRequired = true)]
public string CcList
{
get { return (string)this["ccList"]; }
set { this["ccList"] = value; }
}
[ConfigurationProperty("bccList", IsRequired = true)]
public string BccList
{
get { return (string)this["bccList"]; }
set { this["bccList"] = value; }
}
}
}
在其他地方,正在获取新的配置数据:
SupportCaseConfigurationSection supportTicketsConfigurationSection = ConfigurationManager.GetSection("SupportCaseConfiguration") as SupportCaseConfigurationSection;
网站正在本地发布,我可以附加调试器以确保使用最新版本的文件。我可以在已发布的 web.config.
中看到配置部分我一直在看这个我再也看不出有什么不对劲了。对我来说一切都很好...
任何想法、故障排除技巧甚至指出我是个布偶都会很有用。
干杯。
我只能假设问题与站点程序集中的配置 类 有关。
即使尝试了在线示例,复制粘贴到项目中,也没有成功。
一旦我将配置 section/element 类 放在一个单独的项目中(移出网站项目),它就开始工作了。