使用XSD生成的类反序列化web.config自定义节

时间:2011-06-22 05:15:03

标签: web-config configurationmanager

我在Web.Config文件中有一个自定义部分,并通过configSource引用另一个.config文件。我使用XSD为我的架构生成了.cs文件。如何使用我生成的类来反序列化配置。当我尝试使用.GetSection()方法加载configsection时,它给出了我应该从ConfigurationSection实现的错误。由于我使用xsd生成了类,因此它们不是从ConfigurationSection或ConfigurationElement继承的。在此先感谢!!

1 个答案:

答案 0 :(得分:0)

我已经从ConfigurationSection实现了类来获取文件名,并使用XMLSerializer来使用XSD工具生成的类进行反序列化。这是样本:

namespace mycontrol
{
      public class ConfigurationSection : System.Configuration.ConfigurationSection
        {
           //Configuration is the type generated by XSD for my schema element Configuration

            private static Configuration _config; 

            /// <summary>
            /// static method to load config section and deserialize config
            /// </summary>
            /// <returns></returns>
            private static Configuration GetConfig()
            {
                if (_config == null)
                {
                    ConfigurationSection configSection = (ConfigurationSection)ConfigurationManager.GetSection("SearchControlsConfig") as ConfigurationSection;
                    if (!string.IsNullOrEmpty(configSection.ExternalConfigSource))
                    {
                        string strFilePath = configSection.ExternalConfigSource;
                        if (!File.Exists(strFilePath))
                        {
                            strFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, strFilePath);
                            if (!File.Exists(strFilePath))
                                return null;
                        }

                        using (FileStream fs = new FileStream(strFilePath, FileMode.Open, FileAccess.Read))
                        {
                            XmlSerializer config = new XmlSerializer(typeof(Configuration));
                            _config = (Configuration)config.Deserialize(fs);
                        }
                    }

                }

                return _config;
            }


            /// <summary>
            /// Attribute to specify config source file in custom config section
            /// </summary>
            [ConfigurationProperty("externalConfigSource", DefaultValue = "", IsRequired = false)]
            public string ExternalConfigSource
            {
                get
                {
                    return this["externalConfigSource"] as string;
                }
            }
        }
}

在指定自定义配置时,我无法使用configSource属性作为我的属性,因为它是由ConfigurationManager保留的。