Asp.Net webconfig中使用configSections的用法

Asp.Net webconfig中使用configSections的用法

      最近閒來無事,研究研究公司的框架,無心中打開了webconfig頁面,發現了一個我不認識的節點<configSections></configSections>,因而百度之,大體的瞭解了它的做用,仍是蠻重要的!!!可是我竟然不知道!!!這是最騷的,瞬間以爲本身仍是太年輕了!!!好了,不BB了,言歸正傳了。html

一、configSections有什麼用node

你們都知道,webconfig文件中不能隨意的添加節點,稍有不慎,瀏覽器就GG了,報錯了,玩完了,整我的都很差了,(固然僅限於配置文件,你若是在外部XML文件了定義節點,而後生成對象,那就是你想怎麼定義就怎麼定義)。web

因此configSections節點就是幹這個事的,讓你在webconfig中定義自想要定義的節點,固然確定是要按照它指定的規則來!!!下面就來講configSection制定的規則。sql

 

二、爲何須要自定義節點瀏覽器

說完configSections做用(幫助咱們按照它的規則建立一系列自定義節點),接下來講所爲何須要自定義節點?框架

爲了增長應用程序的可移植性,一般網站須要配置一些自定義的節點,例如:文件上傳的路徑等,再深刻的應用,能夠定義工廠方法須要建立的類。ide

 

三、configSections的使用方法sqlserver

<configSections>
    <sectionGroup name="WebSiteConfig">
      <section name="dbProviders" type="ZC.DBUtility.WebSiteInfoHandler,ZC.DBUtility"/>
      <section name="fileUploadPath" type="ZC.DBUtility.WebSiteInfoHandler,ZC.DBUtility"/>
    </sectionGroup>
  </configSections>

(1)、定義一個configSection配置節post

(2)、而後定義sectionGroup節點,這個配置節至關於全部section配置節的命名空間。網站

(3)、最後定義section配置節,經過這個配置節設置自定義節點的名稱和處理configSection的通常處理程序   注意:這個處理程序必須繼承IConfigurationSectionHandler不要問我爲何,你知道爲何!!!

 

下面開始設置自定義節點

<WebSiteConfig>
    <dbProviders>
      <add key="DBInstance" value="ConnString" type="sqlserver"/>
    </dbProviders>
    <fileUploadPath>
      <add key="path" value="#" />
      <add key="path1" value="#1" />
    </fileUploadPath>
  </WebSiteConfig>

自定義節點的定義規則要和上面的configSections的定義規則保持一致

 

最後編寫通常處理程序,按照必定的規則獲取咱們的自定義節點的信息

using System;
using System.Configuration;
using System.Collections.Generic;
using System.Xml;

namespace ZC.DBUtility
{
    public class WebSiteInfoHandler : IConfigurationSectionHandler
    {
        /// <summary>
        /// 返回自定義節點對象字典
        /// </summary>
        /// <param name="parent">父對象</param>
        /// <param name="configContext">配置上下文對象</param>
        /// <param name="section">節 XML 節點</param>
        /// <returns> 建立的節處理程序對象。</returns>
        public object Create(object parent, object configContext, System.Xml.XmlNode section)
        {
            Dictionary<string, ConfigEntity> config = new Dictionary<string, ConfigEntity>();
            foreach (XmlNode node in section) {
                string key = string.Empty, value = string.Empty, type = string.Empty;
                if (node.Attributes["key"] != null)
                    key = node.Attributes["key"].Value;
                if(node.Attributes["value"] != null)
                    value = node.Attributes["value"].Value;
                if (node.Attributes["type"] != null)
                    type = node.Attributes["type"].Value;
                config.Add(key, new ConfigEntity(value, type));
            }
            return config;
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ZC.DBUtility
{
    public class ConfigEntity
    {
        /// <summary>
        /// 自定義節點對象
        /// </summary>
        /// <param name="_value">節點的value值</param>
        /// <param name="_type">節點的type值</param>
        public ConfigEntity(string _value, string _type) 
        {
            this.Value = _value;
            this.Type = _type;
        }

        public string _value;
        public string _type;
        public string Value {
            get { return _value; }
            set { _value = value; }
        }
        public string Type {
            get { return _type; }
            set { _type = value; }
        }
    }
}

ok,作完這幾步咱們能夠開始愉快的使用自定義節點的信息了

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using ZC.DBUtility;

namespace Web.Ado
{
    public partial class Test : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Dictionary<string, ConfigEntity> config = ConfigurationSettings.GetConfig("WebSiteConfig/dbProviders") as Dictionary<string, ConfigEntity>;
            if (config != null) {
                foreach (string key in config.Keys) {
                    ConfigEntity ce = config[key] as ConfigEntity;
                    Response.Write(ce.RetrieveFullName());
                }
            }
        }
    }
}

相關文章
相關標籤/搜索