博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
App.config自定义节点读取
阅读量:5058 次
发布时间:2019-06-12

本文共 1564 字,大约阅读时间需要 5 分钟。

public class OtherConfigInfo : ConfigurationSection    {        ///         /// 获取配置信息        ///         /// 
public static OtherConfigInfo GetConfig() { return GetConfig("otherconfig"); } /// /// 获取配置信息 /// /// xml节点名称 ///
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);

 

转载于:https://www.cnblogs.com/xxxin/p/9352884.html

你可能感兴趣的文章
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
linux swoole
查看>>
An Easy Problem?! - POJ 2826(求面积)
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
css3实现循环执行动画,且动画每次都有延迟
查看>>
更改git仓库地址
查看>>
有标号DAG计数 [容斥原理 子集反演 组合数学 fft]
查看>>
Recipe 1.4. Reversing a String by Words or Characters
查看>>
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
查看>>
sql注入
查看>>
「破解」Xposed强
查看>>
Linux 平台下 MySQL 5.5 安装 说明 与 示例
查看>>
src与href的区别
查看>>
ABAP工作区,内表,标题行的定义和区别
查看>>
《xxx重大需求征集系统的》可用性和可修改性战术分析
查看>>
Python 中 创建类方法为什么要加self
查看>>
关于indexOf的使用
查看>>
【转】JS生成 UUID的四种方法
查看>>
英语单词
查看>>