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"];
相关推荐
neter.asia15 分钟前
C# 窗体应用程序嵌套web网页,基于谷歌浏览器内核(含源码)
开发语言·c#
小猪写代码1 小时前
C语言:递归函数(新增)
算法·c#
sukalot4 小时前
windows C#-在查询中返回元素属性的子集
开发语言·c#
向宇it5 小时前
【从零开始入门unity游戏开发之——C#篇32】C#其他不常用的泛型数据结构类、顺序存储和链式存储
java·开发语言·数据结构·unity·c#·游戏引擎
阿泽不想掉光头发6 小时前
C#实现调用DLL 套壳读卡程序(桌面程序开发)
java·开发语言·后端·websocket·http·c#
-凌凌漆-6 小时前
【C#】WPF设置Separator为垂直方向
c#
Marzlam6 小时前
C# IDisposable接口 与析构函数
开发语言·c#
GesLuck7 小时前
C#控件开发3—文本显示、文本设值
前端·c#
liangmou21219 小时前
解释小部分分WPI函数(由贪吃蛇游戏拓展)
android·游戏·c#
lili-felicity10 小时前
指针与数组:深入C语言的内存操作艺术
c语言·开发语言·数据结构·算法·青少年编程·c#