如果现在我们需要在app.config一个节点的在下面的例子中,定义,我们需要如何进行操作?

<configSections>
<section name="integration.config" type="UtilityComponent.WinService.Utilities.Config.Integration.IntegrationSection, UtilityComponent.WinService"/>
</configSections> <integration.config>
<listeners>
<add queue="my_queue_Publish" service="PublishService"/>
<add queue="my_queue_sub" service="SubscribeService"/>
</listeners>
</integration.config>

那么这个节点的各个字段都代表什么意思?section中name指的是你自己定义的这个section的名字。type指的是用于接收这个section中相应字段的类,在程序执行的时候CLR会通过反射将各个字段赋值给这个类的相应属性。

在这里,listeners是一个集合,所以我们要用一个继承自ConfigurationElementCollection的类来进行接收。

   [NamedSection("integration.config")]
public class IntegrationSection : ConfigurationSection
{
//这个属性是用来接收listeners这个节点集合。 这个类继承自ConfigurationElementCollection. 须要在这个属性上边
//用Attribute的方式表明相应的节点名称,这样在转换的时候,利用反射,才知道去哪个节点找这个值
[ConfigurationProperty("listeners", IsRequired = false)]
public EndpointCollection EndpointCollection
{
get { return (EndpointCollection)this["listeners"]; }
}
} public class EndpointCollection : ConfigurationElementCollection, IEnumerable<EndpointElement>
{
protected override ConfigurationElement CreateNewElement()
{
return new EndpointElement();
} protected override object GetElementKey(ConfigurationElement element)
{
return ((EndpointElement)element).Queue;
} public new IEnumerator<EndpointElement> GetEnumerator()
{
int count = Count;
for (var i = 0; i < count; i++)
{
yield return BaseGet(i) as EndpointElement;
}
}
} public class EndpointElement : ConfigurationElement
{
//这里须要表明是哪个字段。执行时才干利用反射把相应字段相应的值放到这个属性中来
[ConfigurationProperty("queue", IsKey = true)]
public string Queue
{
get { return (string)this["queue"]; }
set { this["queue"] = value; }
} [ConfigurationProperty("service", IsKey = false, IsRequired = false)]
public string Service
{
get { return (string)this["service"]; }
set { this["service"] = value; }
} public override bool IsReadOnly()
{
return false;
}
}

ConfigurationElement是最主要的类,ConfigurationElementCollection起到了协调的作用。

通过ConfigurationElementCollection的Attribute才干找到相应的配置文件的节点。之后节点找到了,一切就简单了。这时候我们就相应节点中的单个节点,写ConfigurationElement这个类,把相应的字段相应到相应的属性上边就能够了。可是这里有还有一种情况。

<configSections>
<section name="integration.config" type="UtilityComponent.WinService.Utilities.Config.Integration.IntegrationSection, UtilityComponent.WinService"/>
</configSections> <integration.config>
<listeners>
<add queue="my_queue_Publish" service="PublishService"/>
<add queue="my_queue_sub" service="SubscribeService"/>
</listeners> <service.info name="WMSScenarioService" description="WMS Use case implemented using NVS windows service."/>
</integration.config>

我们怎么去接收这个service.info?非常显然这里我们须要在IntegrationSection添加一个属性,一个直接继承自ConfigurationElement的属性来接收。注意,这里我们也须要给这个属性添加一个Attribute来告诉CRL。在反射的时候。是把哪个字段来赋给这里的属性。那为什么在上一个的样例中。我们没有在EndpointCollection中特别指明节点名字呢?由于你能够看出,listeners下边。每一个节点的名字都是add. 跟这个样例不同。

我们能够这样理解,依据Collection的Atrribute找到了listners,然后我们就用对应的ConfigurationElement来接收即可了,可是我们写这个类的时候,就要用Attribute把每一个属性写清楚。

ConfigurationManager.GetSection("integration.config") as IntegrationSection,这里CLR就会把对应的值给对应的属性。这一句代码是最为关键的代码,是CLR对配置文件进行读取解析,然使用反射来每个字段后,值分配来处理相应的属性。

版权声明:本文博客原创文章。博客,未经同意,不得转载。

最新文章

  1. BPM合同管理解决方案分享
  2. 17. Letter Combinations of a Phone Number
  3. pycharm licenseserver 注册方法
  4. 记录linux系统用户shell终端操作记录
  5. jq验证码换一换
  6. Sourcetree add Submodule
  7. 实现网页页面跳转的几种方法大全(meta标签、js实现、php实现)
  8. ios 软键盘顶起这个页面
  9. lesson - 2 笔记 yum /single /rescue /
  10. 初识JavaScript(一)
  11. 学习总结:工程管理与makefile
  12. [记录]MySQL读写分离(Atlas和MySQL-proxy)
  13. solr6.6初探之主从同步
  14. Centos6.8 yum安装MySQL5.6
  15. 阿里云服务器Ubuntu 14.04.2和centos7.5实现nfs挂载
  16. yii2 用 bootstrap 给元素添加背景色
  17. .NET Core开发日志——从ASP.NET Core Module到KestrelServer
  18. HotSpot VM GC 的种类
  19. LOADRUNNER重装经验
  20. 解决 winform 界面对不齐

热门文章

  1. decimal ? 含义
  2. hdu 1150 Machine Schedule(最小顶点覆盖)
  3. 使用WebBrowser,内存一直增加的解决办法
  4. 【j2ee spring】30、巴巴荆楚网-综合hibernate4+spring4(5)分页
  5. C++该函数隐藏
  6. ZOJ 2760 How Many Shortest Path(Dijistra + ISAP 最大流)
  7. mongodb.conf
  8. android JNI 简单demo(2)它JNI demo 写
  9. java项目导出为一个可执行文件jar包
  10. MapXtreme DJ最短路径算法 全路径搜索算法