App.config自定义节点读取
程序员文章站
2022-04-28 22:17:34
--> public class OtherConfigInfo : ConfigurationSection { /// /// 获取配置信息 /// /// public static OtherConfigInfo GetConfig() { ... ......
<?xml version="1.0" encoding="utf-8"?> <configuration> <!--<otherconfig configSource="XmlConfig\other.config" />--> <otherconfig a="1111" b="2222" c="333"/> </configuration>
public class OtherConfigInfo : ConfigurationSection { /// <summary> /// 获取配置信息 /// </summary> /// <returns></returns> public static OtherConfigInfo GetConfig() { return GetConfig("otherconfig"); } /// <summary> /// 获取配置信息 /// </summary> /// <param name="sectionName">xml节点名称</param> /// <returns></returns> public static OtherConfigInfo GetConfig(string sectionName) { OtherConfigInfo section = (OtherConfigInfo)ConfigurationManager.GetSection(sectionName); if (section == null) throw new ConfigurationErrorsException("Section " + sectionName + " is not found."); return section; } [ConfigurationProperty("a", IsRequired = false)] public string a { get { return (string)base["a"]; } set { base["a"] = value; } } [ConfigurationProperty("b", IsRequired = false)] public string b { get { return (string)base["b"]; } set { base["b"] = value; } } [ConfigurationProperty("c", IsRequired = false)] public string c { get { return (string)base["c"]; } set { base["c"] = value; } } }
//调用方法 OtherConfigInfo configInfo = OtherConfigInfo.GetConfig(); Console.WriteLine(configInfo.a);
上一篇: 自己问
推荐阅读
-
Python读取环境变量的方法和自定义类分享
-
Element-ui tree组件自定义节点使用方法
-
Android 自定义View实现多节点进度条功能
-
golang 使用 viper 读取自定义配置文件
-
详解C#读取Appconfig中自定义的节点
-
C#_Excel数据读取与写入_自定义解析封装类_支持设置标题行位置&使用excel表达式收集数据&单元格映射&标题映射&模板文件的参数数据替换(第二版-增加深度读取和更新功能)
-
VS中C#读取app.config数据库配置字符串的三种方法
-
自定义App.config NameValueSectionHandler的bug修复创建自己的NameValueCollectionSectionHandler
-
.Net——使用.net内置处理程序处理自定义节点Demo
-
element-ui中Tree树形自定义节点内容render