C# config配置文件 读取

xml 复制代码
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="deviceFieldConfig" type="ConfigurationSectionDemo.DeviceFieldonfig,ConfigurationSectionDemo" />
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>
  
  <deviceFieldConfig deviceCode = "BC2D00">
    <fields>
      <!--2D 水平补偿-->
      <add fieldName="BCSP2D" fieldId="10032"/>
      <!--2D 垂直补偿-->
      <add fieldName="BCCZ2D" fieldId="10033"/>
      <!--2D 倾角补偿-->
      <add fieldName="BCQJ2D" fieldId="10034"/>
      <!--2D 外轨超高-->
      <add fieldName ="BCWG2D" fieldId="10035"/>
      <!--检测时间-->
      <add fieldName ="JCJCSJ" fieldId="10065"/>
    </fields>
  </deviceFieldConfig>

</configuration>
csharp 复制代码
//使用自定义节点,可能会涉及到这几个对象的使用:
    //ConfigurationSection【配置域】、
    //    ConfigurationElement【节点】、
    //    ConfigurationElementCollection【节点列表】
    public class DeviceFieldonfig : ConfigurationSection
    {
        [ConfigurationProperty("deviceCode", IsRequired = true)]
        public string DeviceCode { get { return (string)base["deviceCode"]; } set { base["deviceCode"] = value; } }
        [ConfigurationProperty("fields", IsDefaultCollection =false )]
        public FiledCollection Fileds { get { return (FiledCollection)this["fields"]; } set { base["fields"] = value; } }


    }
    public class FiledCollection : ConfigurationElementCollection
    {
        protected override ConfigurationElement CreateNewElement()
        {
            return new FieldElement();
        }

        protected override object GetElementKey(ConfigurationElement element)
        {
            FieldElement fieldElement = element as FieldElement;
            return fieldElement?.FieldName;
        }

        //public override ConfigurationElementCollectionType CollectionType
        //{
        //    get
        //    {
        //        return ConfigurationElementCollectionType.BasicMap;
        //    }
        //}

        public FieldElement this[int index]
        {
            get { return (FieldElement)BaseGet(index); }
            set
            {
                if (BaseGet(index) != null)
                {
                    BaseRemoveAt(index);
                }
                BaseAdd(index, value);
            }
        }

        public new  string this[string key]
        {
            get { return ((FieldElement)base.BaseGet(key)).FieldId; }
        }

    }
    public class FieldElement : ConfigurationElement
    {
        /// <summary>
        /// IsRequired  获取或设置一个值,指示经过修饰的元素属性是否是必需的
        /// IsKey 如果此属性是该集合中元素的 Key 属性,则为 true;否则为 false。 默认值为 false。
        /// </summary>
        [ConfigurationProperty("fieldName", IsRequired = true, IsKey = true)]
        public string FieldName { get { return (string)base["fieldName"]; } set { base["fieldName"] = value; } }

        [ConfigurationProperty("fieldId", IsRequired = true)]
        public string FieldId { get { return (string)base["fieldId"]; } set { base["fieldId"] = value; } }

    }
csharp 复制代码
 DeviceFieldonfig d = (DeviceFieldonfig)System.Configuration.ConfigurationManager.GetSection("deviceFieldConfig");
            string content = d.Fileds["BCSP2D"];
相关推荐
Envyᥫᩣ4 小时前
C#语言:从入门到精通
开发语言·c#
IT技术分享社区10 小时前
C#实战:使用腾讯云识别服务轻松提取火车票信息
开发语言·c#·云计算·腾讯云·共识算法
△曉風殘月〆16 小时前
WPF MVVM入门系列教程(二、依赖属性)
c#·wpf·mvvm
逐·風18 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
m0_6569747421 小时前
C#中的集合类及其使用
开发语言·c#
九鼎科技-Leo21 小时前
了解 .NET 运行时与 .NET 框架:基础概念与相互关系
windows·c#·.net
九鼎科技-Leo1 天前
什么是 ASP.NET Core?与 ASP.NET MVC 有什么区别?
windows·后端·c#·asp.net·mvc·.net
.net开发1 天前
WPF怎么通过RestSharp向后端发请求
前端·c#·.net·wpf
小乖兽技术1 天前
C#与C++交互开发系列(二十):跨进程通信之共享内存(Shared Memory)
c++·c#·交互·ipc
幼儿园园霸柒柒1 天前
第七章: 7.3求一个3*3的整型矩阵对角线元素之和
c语言·c++·算法·矩阵·c#·1024程序员节