一、在App.config中自定義Section,這個使用了SectionGroup
<?xml version="1.0" encoding="utf-8" ?> <configuration>
<configSections> <sectionGroup name="IpTables"> <section name="IPs" type="Section.Test.MySectionHandler,Section.Test"/> </sectionGroup> </configSections> <IpTables> <IPs> <add key="ip" value="127.0.0.1"/> <add key="port" value="8888"/> </IPs> </IpTables> </configuration>
xml中的section 需要顯示配置自定義的處理程序,即type屬性
二、創建處理程序 MySectionHandler
1 //實現 IConfigurationSectionHandler接口,並且讀取自定義Section 2 public class MySectionHandler : IConfigurationSectionHandler 3 { 4 public object Create(object parent, object configContext, XmlNode section) 5 { 6 var dic= new Dictionary<string, string>(); 7 //可能會出現注釋,所以需要顯示過濾xml元素 8 foreach (XmlElement childNode in section.ChildNodes.OfType<XmlElement>()) 9 { 10 11 dic.Add(childNode.Attributes["key"].InnerText,childNode.Attributes["value"].InnerText); 12 13 } 14 return dic; 15 } 16 }
執行處理程序代碼如下:
var dic= ConfigurationManager.GetSection("IpTables/IPs") as IDictionary<string,string>;
注意事項:
1.獲取自定義Section,如果是SectionGroup,則需要 SectionGroup/Section 這種格式獲取
2.一般該代碼寫在應用程序初始化處,只加載一次,然后將其值緩存至內存中即可使用
3.<configSections> 元素必須是 configuration 元素的第一個子元素。
三、如何自定義比如log4net.config中那樣的節點?
沒難度,其實就是基本的xml操作了。
