配置文件_自定義section標簽獲取數據

来源:https://www.cnblogs.com/lxhbky/archive/2019/06/18/11047112.html
-Advertisement-
Play Games

前言:為了節約時間,先只粘貼關鍵代碼: 1-添加section標簽,name為自定義標簽名稱,type為:命名空間+類型,程式集名稱 2-自定義標簽數據: watchModel為自定義標簽(ConfigurationSection),watchItems為自定義標簽的數據集(Configuratio ...


  前言:為了節約時間,先只粘貼關鍵代碼:

1-添加section標簽,name為自定義標簽名稱,type為:命名空間+類型,程式集名稱

<section name="watchModel" type="DataCommon.Help.WatchModel,DataCommon" />

2-自定義標簽數據:

  watchModel為自定義標簽(ConfigurationSection),watchItems為自定義標簽的數據集(ConfigurationElementCollection);add為數據集里的model(ConfigurationElement)。

<watchModel>
    <watchItems>
      <!--上   班-->
      <add ID="1" IsEnable="true" BeginTime="09:05:00" EndTime="09:15:00" MaxActionTimes="2" ActionSeconds="120" ActionName="SendTipsToDingding" ActionData="shangban" />
      <!--下   班-->
      <add ID="2" IsEnable="true" BeginTime="17:50:00" EndTime="18:05:00" MaxActionTimes="2" ActionSeconds="120" ActionName="SendTipsToDingding" ActionData="xiaban" />
      <!--每日BUG-->
      <add ID="3" IsEnable="true" BeginTime="09:10:00" EndTime="09:15:00" MaxActionTimes="1" ActionSeconds="0" ActionName="MyProjectBugTips" ActionData="" />
      <!--吃飯提醒-->
      <add ID="4" IsEnable="true" BeginTime="11:35:00" EndTime="11:40:00" MaxActionTimes="2" ActionSeconds="120" ActionName="SendTipsToDingding" ActionData="chifan" />
      <!--項目上線臨時時間-->
      <add ID="5" IsEnable="true" BeginTime="14:05:00" EndTime="17:15:00" MaxActionTimes="10" ActionSeconds="30" ActionName="MyProjectBugTips" ActionData="bugCheck" />
    </watchItems>
  </watchModel>

3-創建自定義標簽Model:

標簽分為3部分,代碼也對應3個繼承類:ConfigurationSection,ConfigurationElementCollection,ConfigurationElement。

類的屬性和標簽屬性使用:ConfigurationProperty("標簽屬性")進行對應,需要對get,set方法進行改造。

集合標簽:需要對key,createElement,和下標獲取對象方法,進行重構。

 

常見錯誤-1-對象watchModel需要繼承ConfigrationSection,總之每個子標簽對應的model都需要繼承對應的屬性,並對其進行改寫或重寫:

創建 watchModel 的配置節處理程式時出錯: 類型“DataCommon.Help.WatchModel”不從“System.Configuration.IConfigurationSectionHandler”繼承。

 

public class ConfigHelper{
    /// <summary>
        /// 獲取Section對象數據集
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <returns></returns>
        public static T GetSectionT<T>(string sectionName) where T : class
        {
            T t = ConfigurationManager.GetSection(sectionName) as T;
            return t;
        }
}

 

WatchModel watchModel = ConfigHelper.GetSectionT<WatchModel>("watchModel");

 

namespace DataCommon.Help
{
    public class WatchModel : ConfigurationSection
    {
        [ConfigurationProperty("watchItems")]
        public WatchItems WatchItems
        {
            get
            {
                return this["watchItems"] as WatchItems;
            }
            set
            {
                this["watchItems"] = value;
            }
        }
    }

    public class WatchItems : ConfigurationElementCollection
    {
        protected override ConfigurationElement CreateNewElement()
        {
            return new WatchItem();
        }

        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((WatchItem)element).ID;
        }

        public WatchItem this[object id]
        {
            get
            {
                return (WatchItem)base.BaseGet(id);
            }
        }
    }

    public class WatchItem : ConfigurationElement
    {
        /// <summary>
        /// 唯一標識
        /// </summary>
        [ConfigurationProperty("ID")]
        public int ID
        {
            get
            {
                return (int)this["ID"];
            }
            set
            {
                this["ID"] = value;
            }
        }
        /// <summary>
        /// 是否啟用
        /// </summary>
        [ConfigurationProperty("IsEnable")]
        public bool IsEnable
        {
            get
            {
                return (bool)this["IsEnable"];
            }
            set
            {
                this["IsEnable"] = value;
            }
        }
        /// <summary>
        /// 開始時間(誤差1秒=取決於計時器預設時間間隔)
        /// </summary>
        [ConfigurationProperty("BeginTime")]
        public string BeginTime
        {
            get
            {
                return (string)this["BeginTime"];
            }
            set
            {
                this["BeginTime"] = value;
            }
        }
        /// <summary>
        /// 結束時間
        /// </summary>
        [ConfigurationProperty("EndTime")]
        public string EndTime
        {
            get
            {
                return (string)this["EndTime"];
            }
            set
            {
                this["EndTime"] = value;
            }
        }
        /// <summary>
        /// 最大執行次數
        /// </summary>
        [ConfigurationProperty("MaxActionTimes")]
        public int MaxActionTimes
        {
            get
            {
                return (int)this["MaxActionTimes"];
            }
            set
            {
                this["MaxActionTimes"] = value;
            }
        }
        /// <summary>
        /// 計時周期內執行的動作(動作會在到達開始時間後的)
        /// </summary>
        [ConfigurationProperty("ActionName")]
        public string ActionName
        {
            get
            {
                return (string)this["ActionName"];
            }
            set
            {
                this["ActionName"] = value;
            }
        }
        /// <summary>
        /// 計時周期內執行的動作傳入數據(動作會在到達開始時間後的)
        /// </summary>
        [ConfigurationProperty("ActionData")]
        public string ActionData
        {
            get
            {
                return (string)this["ActionData"];
            }
            set
            {
                this["ActionData"] = value;
            }
        }
        /// <summary>
        /// 動作執行時間間隔(秒)
        /// </summary>
        [ConfigurationProperty("ActionSeconds")]
        public int ActionSeconds
        {
            get
            {
                return (int)this["ActionSeconds"];
            }
            set
            {
                this["ActionSeconds"] = value;
            }
        }
    }
}

 

總結:以上就是主要的代碼了,中間也遇到過一些問題,上面基本上都寫了,以後再補充優化吧。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本文主要是討論棧和堆的含義,也就是C#的兩種類據類型:值類型和引用類型; 一、堆與棧 什麼是堆(Heap)? ☞ 堆是無序的,是一片不連續的記憶體域,由用戶自己來控制和釋放,如果用戶自己不釋放的話,當記憶體達到一定的特定值時或程式運行結束時,通過垃圾回收器(GC)來回收。 ☞ 是程式運行期間動態分配的內 ...
  • 1、去http://www.tuling123.com網址創建賬號,創建機器人 重點 2、上代碼 winform界面如上 HttpRequestHelper.PostAsync方法具體如下 winform後臺代碼如下 到此一個簡單調用圖靈機器人完成。 ...
  • Google Authenticator(谷歌身份驗證器)在C#中的封裝使用 ...
  • 我個人推薦:使用dynamic類型先接受數據,然後再轉換成T對象,比較方便,實用,下麵是關鍵代碼: 思路:使用dynamic.ToString()方法,得到Json的字元串,然後使用反序列化方法,可以避免方案一的數據丟失問題。好用!!!推薦!!! ...
  • C\ 程式調試錯誤集 [toc] 1.依賴註入錯誤An unhandled exception has occurred while executing the request. 1.1 出錯現象 System.InvalidOperationException: Unable to resolve ...
  • 最近做 .net core 項目 發現一個新的 生成excel 的插件 。 以前值用 aspose 或者 npio。 簡介:Epplus是一個使用Open Office XML(Xlsx)文件格式,能讀寫Excel 2007/2010文件的開源組件 不需要安裝office 支持 .net core ...
  • 開篇:上次我們學習了基本的數組結構。 今天,我們來學習另一個線性的數據結構,棧。 棧這種數據結構,無時無刻不在我們的身邊。是種極其重要的數據結構。 所以,什麼是棧呢?(不要廢話了,快說) 先來看我們生活中,比如我們經常操作的word文檔。 我們比如寫入四個字, (天氣真好)。 我們不想要了這句話,C ...
  • 前言:時間緊,先寫關鍵代碼,以後優化: 在此感謝其他博友分享的文章,參考文章:C#反射委托創建器 1-定義含有委托的類: 2-初始化類: 創建委托方法1--創建靜態方法的委托,只需要2個參數:委托類型和方法信息: Delegate.CreateDelegate(typeof(Action<TimeC ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...