自定义配置xml设置并存储到字典对象中

时间:2012-04-20 22:13:55

标签: c# asp.net xml web-config

我计划为FormFields,QueryString参数等设置配置键。在我的web.config中,我设置如下:

<WhiteListPaametersGroup>
  <WhiteListPaameters>
    <FormField1>EVENTVALIDATION</FormField1>
    <FormField2>VIEWSTATE</FormField2>
    <FormField3>Button1</FormField3>

    <QueryString1>firstname</QueryString1>
    <QueryString2>lastname</QueryString2>

  </WhiteListPaameters>
</WhiteListPaametersGroup>

然后在我的代码中,我读取了如下值:

Dictionary<string, string> parameters = new Dictionary<string,string>();

foreach (XmlNode n in section.ChildNodes)
{
    parameters.Add(n.Name, n.InnerText);
}

有没有更好的存储方式。稍后,我希望能够像对象一样浏览字典,并能够获得FormFields,Querystrings等设置。

如果我能写得更干净,请告诉我。

由于

3 个答案:

答案 0 :(得分:1)

您可以使用XML序列化来存储设置并将其直接还原到对象中。它不是完美的,但很容易设置,并为您提供对象保存/恢复。

拥有此类(属性必须公开):

public class WhiteListParameters
{
    public string FormField1 { get; set; }
    public string FormField2 { get; set; }
    public string FormField3 { get; set; }

    public string QueryString1 { get; set; }
    public string QueryString2 { get; set; }
}

要将其保存到XML文件,请运行以下代码:

WhiteListParameters parms = new WhiteListParameters
                                {
                                    FormField1 = "EVENTVALIDATION",
                                    FormField2 = "VIEWSTATE",
                                    FormField3 = "Button1",
                                    QueryString1 = "firstname",
                                    QueryString2 = "lastname"
                                };

using(StreamWriter sw = new StreamWriter("C:\\temp\\config.xml"))
{
    XmlSerializer xs = new XmlSerializer(typeof (WhiteListParameters));
    xs.Serialize(sw, parms);
    sw.Close();
}

将其读回对象:

using(StreamReader sr = new StreamReader("c:\\temp\\config.xml"))
{
    XmlSerializer xs = new XmlSerializer(typeof (WhiteListParameters));
    WhiteListParameters parms = (WhiteListParameters) xs.Deserialize(sr);
    sr.Close();
}

答案 1 :(得分:0)

您可能会考虑的一个选项是创建自定义配置部分,您可以在web.config中注册。

这是我为引用我们的XSLT模板而创建的配置部分:

namespace Foo.Web.Applications.CustomConfigurationSections
{
    public class XslTemplateConfiguration : ConfigurationSection
    {
        [ConfigurationProperty("xslTemplates")]
        public XslTemplateElementCollection XslTemplates
        {
            get { return this["xslTemplates"] as XslTemplateElementCollection; }
        }
    }

    public class XslTemplateElement : ConfigurationElement
    {
        [ConfigurationProperty("name", IsRequired = true, IsKey = true)]
        public string Name
        {
            get { return this["name"] as string; }
            set { this["name"] = value; }
        }

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

    public class XslTemplateElementCollection : ConfigurationElementCollection
    {
        public XslTemplateElement this[object key]
        {
            get { return base.BaseGet(key) as XslTemplateElement; }
        }

        public override ConfigurationElementCollectionType CollectionType
        {
            get { return ConfigurationElementCollectionType.BasicMap; }
        }

        protected override string ElementName
        {
            get { return "xslTemplate"; }
        }

        protected override bool IsElementName(string elementName)
        {
            bool isName = false;
            if (!String.IsNullOrEmpty(elementName))
                isName = elementName.Equals("xslTemplate");
            return isName;
        }

        protected override ConfigurationElement CreateNewElement()
        {
            return new XslTemplateElement();
        }

        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((XslTemplateElement)element).Name;
        }
    }
}

您可以在web.config中注册此部分,如下所示:

<configSections>
    <section name="xslTemplateConfiguration" type="Foo.Web.Applications.CustomConfigurationSections.XslTemplateConfiguration"/>
</configSections>

您可以在代码中访问该集合,如下所示:

var config = WebConfigurationManager.OpenWebConfiguration("/");
if (config.HasFile)
{
    var templates = config.GetSection("xslTemplateConfiguration") as XslTemplateConfiguration;
    if (templates != null)
    {
        var templatePath = templates.XslTemplates["PO"].Path;
    }
}

答案 2 :(得分:0)

对于读取配置,.NET Framework在System.Configuration命名空间中有许多类。最重要的课程是ConfigurationSectionConfigurationElement。从这些类派生,添加所需的属性并使用ConfigurationProperty属性对其进行装饰。这种方法的优点是类型安全,可以定义有效列表和事实,.NET Framework框架将自动为您执行所有读取,解析和检查web.config中的值。