C#中的設定檔自訂解析

來源:互聯網
上載者:User

以前總是用設定檔以外的xml來進行附加的應用程式配置設定,近期發現原來C#中已提供了相應的方法,不由得又一次強烈鄙視自己的無知.本例為vs2003版本,vs2005中個別方法可能已到期, 不過整體模式相同.

 一,修改設定檔(web.config或App.config)內容

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <!--type中用逗號分割了完整類名稱和程式集(*.dll或*.exe)名稱,name制定自訂配置的根節點名稱-->
    <section name="Sample" type="Sample.ConfigHandler,Sample" />
  </configSections>
  <Sample>
    <myConfig name="sharpnessdotnet" sex="male"/>
  </Sample>
</configuration>

二,配置解析類定義

public class ConfigHandler:System.Configuration.IConfigurationSectionHandler
    {
        object System.Configuration.IConfigurationSectionHandler.Create(object parent, object configContext, System.Xml.XmlNode section)
        {
            XmlNodeList configs = section.SelectNodes("myConfig");
            foreach(XmlNode config in configs)
            {
                Console.WriteLine(config.Attributes["name"].Value);
                Console.WriteLine(config.Attributes["sex"].Value);
            }
            return "hello";
        }
    }

三,用戶端測試代碼

 class Program
    {
        static void Main(string[] args)
        {          
            object value = ConfigurationSettings.GetConfig("Sample");//此處可返回object,開發人員可以自己去做文章
            Console.WriteLine(value.ToString());
            Console.Read();
        }
    }

四,輸出效果展示

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.