自定义配置部分.NET

时间:2013-09-17 00:40:32

标签: c# web-config configurationmanager

我正在尝试按照以下教程创建一个自定义配置部分来保存一些API凭据:http://devlicio.us/blogs/derik_whittaker/archive/2006/11/13/app-config-and-custom-configuration-sections.aspx。我已将以下内容添加到我的Web.config文件中:

<!-- Under configSections -->
 <section name="providers" type="EmailApiAccess.Services.ProviderSection, EmailApiAccess.Services"/>

<!-- Root Level -->
<providers>
    <add name="ProviderName" username="" password ="" host="" />
  </providers>

并创建了以下类:

public class ProviderSection: ConfigurationSection
{
    [ConfigurationProperty("providers")]
    public ProviderCollection Providers
    {
        get { return ((ProviderCollection)(base["providers"])); }
    }
}
[ConfigurationCollection(typeof(ProviderElement))]
public class ProviderCollection : ConfigurationElementCollection
{
    public ProviderElement this[int index]
    {
        get { return (ProviderElement) BaseGet(index); }
        set
        {
            if (BaseGet(index) != null)
                BaseRemoveAt(index);

            BaseAdd(index, value);
        }
    }

    protected override object GetElementKey(ConfigurationElement element)
    {
        return ((ProviderElement)(element)).name;
    }

    protected override ConfigurationElement CreateNewElement()
    {
        return new ProviderElement();
    }
}
public class ProviderElement: ConfigurationElement
{
    public ProviderElement() { }

    [ConfigurationProperty("name", DefaultValue="", IsKey=true, IsRequired=true)]
    public string name
    {
        get { return (string)this["name"]; }
        set { this["name"] = value; }
    }

    [ConfigurationProperty("username", DefaultValue = "", IsRequired = true)]
    public string username
    {
        get { return (string)this["username"]; }
        set { this["username"] = value; }
    }

    [ConfigurationProperty("password", DefaultValue = "", IsRequired = true)]
    public string password
    {
        get { return (string)this["password"]; }
        set { this["password"] = value; }
    }

    [ConfigurationProperty("host", DefaultValue = "",  IsRequired = false)]
    public string host
    {
        get { return (string)this["host"]; }
        set { this["host"] = value; }
    }


}

但是,当我尝试使用此代码实现代码时:

var section = ConfigurationManager.GetSection("providers");
ProviderElement element = section.Providers["ProviderName"];
var creds = new NetworkCredential(element.username, element.password);   

我收到错误消息,说'对象'不包含'提供商'的定义....

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:3)

ConfigurationManager.GetSection返回object类型的值,而不是您的自定义配置部分。请尝试以下方法:

var section = ConfigurationManager.GetSection("providers") as ProviderSection;