1.Configuration(public sealed class Configuration)

  定义:表示适用于特定计算机、应用程序或资源的配置文件。 此类不能被继承

  获取实例:

    ConfigurationManager 类,如果你的实体是客户端应用程序

    ConfigurationManager 类,如果你的实体是客户端应用程序。

  继承:

    Object --> Configuration

  属性:

 AppSettings  获取应用于此 Configuration 对象的 AppSettingsSection 对象配置节
 AssemblyStringTransformer  指定一个函数委托,用于转换配置文件中的程序集字符串
 ConnectionStrings  获取应用于此 Configuration 对象的 ConnectionStringsSection 配置节对象
 EvaluationContext  获取 Configuration 对象的 ContextInformation 对象。
 FilePath  获取由 Configuration 对象表示的配置文件的物理路径。
 HasFile  获取一个值,该值指示由此 Configuration 对象表示的资源是否存在相应的文件。
 Locations  获取此 Configuration 对象内定义的位置。
 NamespaceDeclared  获取或设置一个值,该值指示配置文件是否具有 XML 命名空间。
 RootSectionGroup  获取此 Configuration 对象的根 ConfigurationSectionGroup。
 SectionGroups  获取由此配置定义的节组的集合。  
 Sections  获取此 Configuration 对象定义的节的集合。         
 TargetFramework  在将当前版本之前的某个版本作为目标时,指定 .NET Framework 的目标版本。
 TypeStringTransformer  指定一个函数委托,用于转换配置文件中的类型字符串。

  

  方法:

GetSection(string sectionName) 返回指定的 ConfigurationSection 对象
GetSectionGroup (string path) 获取指定的 ConfigurationSectionGroup 对象。
Save () 将包含在此 Configuration 对象中的配置设置写入当前 XML 配置文件
Save (System.Configuration.ConfigurationSaveMode mode) 将包含在此 Configuration 对象中的配置设置写入当前 XML 配置文件
Save (System.Configuration.ConfigurationSaveMode mode, bool forceUpdateAll) 将包含在此 Configuration 对象中的配置设置写入当前 XML 配置文件
SaveAs (string filename) 将包含在此 Configuration 对象中的配置设置写入指定的 XML 配置文件
SaveAs (string filename, System.Configuration.ConfigurationSaveMode mode) 将包含在此 Configuration 对象中的配置设置写入指定的 XML 配置文件
SaveAs (string filename, System.Configuration.ConfigurationSaveMode mode, bool forceUpdateAll) 将包含在此 Configuration 对象中的配置设置写入指定的 XML 配置文件

2.实际应用

  配置文件如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="appsetting1" value="appsetting1" />
</appSettings>
</configuration>

  1)获取appSettings节点中的值

string value = ConfigurationManager.AppSettings["appsetting1"];
Console.WriteLine(value);
//返回:appsetting1

1.Configuration的更多相关文章

  1. PhpStorm和WAMP配置调试参数,问题描述Error. Interpreter is not specified or invalid. Press “Fix” to edit your project configuration.

    PhpStorm和WAMP配置调试参数 问题描述: Error. Interpreter is not specified or invalid. Press “Fix” to edit your p ...

  2. Apache2.4:AH01630 client denied by server configuration

    问题说明:Apache服务总共有4个,是为了防止单点故障和负载均衡,负载均衡控制由局方的F5提供. 访问的内容在NAS存储上,现象是直接访问每个apache的服务内容都是没有问题,但是从负载地址过来的 ...

  3. Fedora 22中的Locale and Keyboard Configuration

    Introduction The system locale specifies the language settings of system services and user interface ...

  4. ABP源码分析四:Configuration

    核心模块的配置 Configuration是ABP中设计比较巧妙的地方.其通过AbpStartupConfiguration,Castle的依赖注入,Dictionary对象和扩展方法很巧妙的实现了配 ...

  5. External Configuration Store Pattern 外部配置存储模式

    Move configuration information out of the application deployment package to a centralized location. ...

  6. SCVMM中Clone虚拟机失败显示Unsupported Cluster Configuration状态

    在SCVMM进行虚拟机的Clone,虽然失败了,但是Clone出虚拟机却显示在SCVMM控制台的虚拟机的列表中,并且状态是Unsupported Cluster Configuration.无法修复, ...

  7. commons configuration管理项目的配置文件

    Commons Confifutation commons configuration可以很方便的访问配置文件和xml文件中的的内容.Commons Configuration 是为了提供对属性文件. ...

  8. Elasticsearch Configuration 中文版

    ##################### Elasticsearch Configuration Example ##################### # This file contains ...

  9. Spark 官方文档(4)——Configuration配置

    Spark可以通过三种方式配置系统: 通过SparkConf对象, 或者Java系统属性配置Spark的应用参数 通过每个节点上的conf/spark-env.sh脚本为每台机器配置环境变量 通过lo ...

  10. spring configuration 注解

    org.springframework.context.annotation @annotation.Target({ElementType.TYPE}) @annotation.Retention( ...

随机推荐

  1. 423 Locked

    TortoiseSVN提交提示423 Locked的解决办法 . 此办法是阅读官方文档(TortoiseSVN-1.6.16-zh_CN.pdf) 4.21 锁部分提供的办法: 首先选择选择要提交的文 ...

  2. pgsql SQL监控,查询SQL执行情况

    SELECT procpid, START, now() - START AS lap, current_query FROM ( SELECT backendid, pg_stat_get_back ...

  3. 【leetcode】981. Time Based Key-Value Store

    题目如下: Create a timebased key-value store class TimeMap, that supports two operations. 1. set(string ...

  4. 【leetcode】1018. Binary Prefix Divisible By 5

    题目如下: Given an array A of 0s and 1s, consider N_i: the i-th subarray from A[0] to A[i] interpreted a ...

  5. Session过期,如何跳出iframe框架页的问题

    跳出框架页,实际上是更改父页面地址.那么更改父页面地址很简单即: window.parent.location='/Login/loginindex'; 这里说session过期,那么浏览器端的任何请 ...

  6. Linux基础优化(二)

    Linux基础优化(二) 一操作系统字符优化 避免出现中文乱码,UTF-8支持中文GBK-Xx支持中文 (一)查看默认编码 [root@centos7 ~]# echo $LANG en_US.UTF ...

  7. Java并发与多线程与锁优化

    前言 目前CPU的运算速度已经达到了百亿次每秒,所以为了提高生产率和高效地完成任务,基本上都采用多线程和并发的运作方式. 并发(Concurrency):是指在某个时间段内,多任务交替处理的能力.CP ...

  8. MAX3232 每次只有在上电后,再连接串口线正常——保护电阻。RS232防雷保护

    转载:http://m.newsmth.net/article/Circuit/298517?p=1 转载:http://www.360doc.com/content/18/0719/13/57938 ...

  9. 十、future其他成员函数、shared_future、atomic(原子操作)

    一. int mythread(){ cout<<"thread"<<endl; std::chrono::milliseconds dura();//5秒 ...

  10. Unity编程标准导引-3.4 Unity中的对象池

    本文为博主原创文章,欢迎转载.请保留博主链接http://blog.csdn.net/andrewfan Unity编程标准导引-3.4 Unity中的对象池 本节通过一个简单的射击子弹的示例来介绍T ...