C#除了appSettings和connectionStrings默认配置外还允许用户自定义使用配置。C# 提供3中简单的自定义配置,配置文件如下

  

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="Config1" type="System.Configuration.SingleTagSectionHandler"/>
<section name="Config2" type="System.Configuration.DictionarySectionHandler"/>
<section name="Config3" type="System.Configuration.NameValueSectionHandler"/>
</configSections>
<Config1 a="1" b="2"/>
<Config2>
<add key="a" value="1"/>
<add key="b" value="2"/>
</Config2>
<Config3>
<add key="a" value="1"/>
<add key="b" value="2"/>
</Config3>
</configuration>

  使用这3种中配置要注意:

  1.  configSections节点必须要是配置的第一个节点。

  2. 自定义配置要在configSections内部声明。格式是<section name="配置名" type="类的全路径,dll名"/> 系统的这3种配置dll省略。

   3. 针对以上3种配置格式不能变,不能变,不能变,重要的事说3遍 。<Config1 a="1" b="2"></Config1 > 这种写法 抛出异常。

  这3中使用也比较简单,用ConfigurationManager.GetSection(XXX)获取节点数据。第一种和第二种都返回Hashtable类型(Hashtable实现IDictionary接口),第三种返回NameValueCollection 与appSettings返回类型相同。

  

  public static void Main(string[] args)
{
// Hashtable
Hashtable config1 = (Hashtable)ConfigurationManager.GetSection("Config1");
Dictionary<string, string> c = new Dictionary<string, string>();
Console.WriteLine("****************配置1**********************");
Console.WriteLine("遍历");
foreach (DictionaryEntry g in config1)
{
Console.WriteLine(g.Key + "=" + g.Value);
}
Console.WriteLine("使用:a=" + config1["a"]); Hashtable config2 = (Hashtable)ConfigurationManager.GetSection("Config2");
Console.WriteLine("****************配置2**********************");
Console.WriteLine("遍历");
foreach (DictionaryEntry g in config1)
{
Console.WriteLine(g.Key + "=" + g.Value);
}
Console.WriteLine("使用:a=" + config1["a"]); Console.WriteLine("****************配置3**********************");
NameValueCollection config3 = (NameValueCollection)ConfigurationManager.GetSection("Config3");
Console.WriteLine("遍历");
foreach (var item in config3.AllKeys)
{
Console.WriteLine(item + "=" + config3[item]);
}
Console.WriteLine("使用:a=" + config3["a"]); Console.ReadLine();
}

获取配置

 调试结果:

  接下来我们来讲讲如何使用自己格式的配置方法,

  一.建立一个配置文件 如下

  

 <?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="MyConfig" type="CustomConfig.MyConfig.ConfigHandler,CustomConfig" />
</configSections> <MyConfig c="3">
<a>1</a>
<b>2</b>
</MyConfig> </configuration>

  确定数据格式和解析类。

  二.解析类

  

 namespace CustomConfig.MyConfig
{
public class ConfigHandler : IConfigurationSectionHandler
{
public object Create(object parent, object configContext, XmlNode section)
{
ConfigModel model = new ConfigModel //根据需要的类型来返回
{
a = section.SelectSingleNode("/MyConfig/a").InnerText,
b = section.SelectSingleNode("/MyConfig/b").InnerText,
c = section.SelectSingleNode("/MyConfig").Attributes.GetNamedItem("c").Value
};
return model;
}
} public class ConfigModel
{
public string a { get; set; }
public string b { get; set; }
public string c { get; set; }
}
}

  1.配置解析类要实现 IConfigurationSectionHandler j接口  Create函数为具体解析函数,XmlNode section 包含节点全部数据

  2.确定数据的返回格式如 ConfigModel,可根据需要编写。

  3.解析方法和解析Xml相同。

  三. 取配置数据

  方法与之前相同一样用ConfigurationManager.GetSection(XXX)函数 ,执行时会自动调用解析类。

  

public static void Main(string[] args)
{
ConfigModel config = (ConfigModel)ConfigurationManager.GetSection("MyConfig");
Console.WriteLine(config.a + "," + config.b + "," + config.c);
}

  

  

C# 快捷使用自定义配置节点的更多相关文章

  1. VS2012 常用web.config配置解析之自定义配置节点

    在web.config文件中拥有一个用户自定义配置节点configSections,这个节点可以方便用户在web.config中随意的添加配置节点,让程序更加灵活(主要用于第三方插件的配置使用) 自定 ...

  2. App.config和Web.config配置文件的自定义配置节点

    前言 昨天修改代码发现了一个问题,由于自己要在WCF服务接口中添加了一个方法,那么在相应调用的地方进行更新服务就可以了,不料意外发生了,竟然无法更新.左查右查终于发现了问题.App.config配置文 ...

  3. ASP.NET系列:自定义配置节点的复用

    appSettings太简单,为每个程序自定义配置节点太复杂,因此要解决app.config&web.config自定义配置的复用问题. 1.读取不依赖SectionName,根节点可以定义为 ...

  4. 自定义配置节点configSections的使用

    //App.config <?xml version="1.0" encoding="utf-8" ?><configuration>  ...

  5. .Net 配置文件--继承ConfigurationSection实现自定义处理类处理自定义配置节点

    除了使用继承IConfigurationSectionHandler的方法定义处理自定义节点的类,还可以通过继承ConfigurationSection类实现同样效果. 首先说下.Net配置文件中一个 ...

  6. .Net 配置文件——继承ConfigurationSection实现自定义处理类处理自定义配置节点

    除了使用继承IConfigurationSectionHandler的方法定义处理自定义节点的类,还可以通过继承ConfigurationSection类实现同样效果. 首先说下.Net配置文件中一个 ...

  7. C#创建自定义配置节点

    转载:http://www.educity.cn/develop/495003.html 在.Net应用程序中我们经常看到VS为我们生成的项目工程中都会含有app.config或者web.connfi ...

  8. App.Config自定义配置节点

    配置文件: <?xml version="1.0" encoding="utf-8"?> <configuration> <con ...

  9. .NET中如何自定义配置节点

    .NET Framework在web.config或app.config中默认提供了很多种设置,以便能够改变应用程序内嵌组件的行为,例如<connectionStrings>.<ht ...

随机推荐

  1. 浏览器输入一个url的过程,以及加载完html文件和js文件的标志

    简单理解: 当在浏览器地址栏输入一url时,浏览器会做以下几个步骤: 1.将url转化为ip地址,也就是DNS解析,(先找本地host文件中是否有对应的ip地址,如果有就直接用,没有的话,就按域名的二 ...

  2. SSH框架下的多表增删改查

    下载地址:SSH框架下的多表增删改查 点击进入码云Git下载 点击进入CSDN下载 项目结构: 项目代码就不全部贴出来了,只贴下核心代码.需要项目的自己可以去下载. package com.atgui ...

  3. 转Hibernate继承

    hibernate继承映射 以下测试是在mysql中进行的. 1.单表方式 Animal.java @Entity @Inheritance(strategy=InheritanceType.SING ...

  4. LR编写post请求

    函数列表: web_submit_data(); web_custom_request(); web_get_int_property(); 1.web_submit_data(); 2.web_cu ...

  5. 3ds Max 2018 在安装后无法启动或出现不稳定

    问题: 安装 3ds Max 2018 后,软件无法正常启动,或在打开后不久出现不稳定和崩溃. 原因: 有多种原因可能会导致这些错误: ▪ 3ds Max.Windows 更新和 ProSound.d ...

  6. GatewayWorker 版本升级过程和注意点

    公司开发用到WorkerMan框架,开发RPC服务,用于拉取用户信息和协助用户注册. workman 官网:http://www.workerman.net/workerman 老版本: worker ...

  7. Valgrind的安装及简单使用

    1.获取源码 wget http://www.valgrind.org/downloads/valgrind-3.14.0.tar.bz2 2.解压缩 tar -jxvf valgrind-3.14. ...

  8. 使用JMX透过防火墙远程监控tomcat服务

    https://my.oschina.net/mye/blog/64879 http://blog.csdn.net/l1028386804/article/details/51547408 http ...

  9. linux程序设计——个人总结

    linux程序设计--个人总结 到今天为止,<linux程序设计>学习基本完毕了.从五月下旬開始接触linux,学习安装Ubuntu14.04,六月份開始学习<linux程序设计&g ...

  10. netty学习(二)--传统的bio编程

    网络编程的基本模型是Client/Server模型.也就是两个进程之间进行相互通信,当中服务端提供位置信息( 绑定ip地址和监听port),client通过连接操作向服务端监听的地址发送连接请求,通过 ...