91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在web.config或者app.config中如何增加自定義配置節

發布時間:2021-11-23 13:49:23 來源:億速云 閱讀:513 作者:小新 欄目:編程語言

這篇文章主要介紹在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中如何增加自定義配置節”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

承德县| 揭东县| 八宿县| 禹城市| 尚志市| 汾阳市| 洪洞县| 太仆寺旗| 齐齐哈尔市| 宁陵县| 平山县| 五原县| 麦盖提县| 孝感市| 日喀则市| 天台县| 田东县| 隆尧县| 驻马店市| 区。| 花莲市| 讷河市| 隆德县| 永济市| 崇州市| 广东省| 来宾市| 翁源县| 衡阳县| 泉州市| 栖霞市| 高雄市| 株洲市| 阿勒泰市| 昌平区| 汾西县| 临西县| 会理县| 林州市| 海林市| 乐东|