您好,登錄后才能下訂單哦!
這篇文章主要介紹在web.config或者app.config中如何增加自定義配置節,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
簡單鍵值對
web.config
<configSections> <section name="users" type="System.Configuration.NameValueSectionHandler"/> </configSections> <users configSource="users.config"></users>
users.config
<users> <add key="beijing" value="123"></add> <add key="tianjin" value="123"></add> </users>
c#
NameValueCollection users = System.Configuration.ConfigurationManager.GetSection("users") as NameValueCollection; Response.Write(users.Keys[0]+"</br>"+users.Keys[1]);
復雜類型
web.config
<configSections> <section name="roles" type="EBuy.Chapter3.NTier.WebUI.RolesConfig, EBuy.Chapter3.NTier.WebUI"/> </configSections> <roles configSource="roles.config"> </roles>
roles.config
<roles> <add username="beijing" password="123"></add> <add username="tianjin" password="123"></add> </roles>
RolesCofig.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace EBuy.Chapter3.NTier.WebUI { public class RolesConfig : System.Configuration.IConfigurationSectionHandler { public object Create(object parent, object configContext, System.Xml.XmlNode section) { return section; } } }
c#
XmlNode roles= System.Configuration.ConfigurationManager.GetSection("roles") as XmlNode; Response.Write(roles.ChildNodes [0].Attributes["username"].InnerText);
還可以將配置節定義為一個實體
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace EBuy.Chapter3.NTier.WebUI { public class RolesConfig : System.Configuration.IConfigurationSectionHandler { public object Create(object parent, object configContext, System.Xml.XmlNode section) { var list=new List<Role>(); for(int i=0;i<section.ChildNodes.Count;i++) { list.Add(new Role (){ Username =section.ChildNodes[i].Attributes["username"].InnerText , Password =section.ChildNodes[i].Attributes["password"].InnerText }); } return list; } } public class Role { public string Username { get; set; } public string Password{get;set;} } }
var roles = System.Configuration.ConfigurationManager.GetSection("roles") as List<EBuy.Chapter3.NTier.WebUI.Role >; Response.Write(roles.First ().Username);
以上是“在web.config或者app.config中如何增加自定義配置節”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。