Introduction

This article will demonstrate us how we can get/read the configuration setting from Web.Config or App.Config in C#. There are different purposes to set the values inside the configuration file and read their values based on defined keys,  we define those values inside the configuration section which might be need to make it more secure, it could be some secret keys or the value which should get frequently.

Using the code

Today I will show you, four different ways to get the values from configuration section. For this demonstration, I am going to create a simple Console Application and provide the name as “ConfigurationExample”. Just create one Console Application as following.

Just follow: New Project > Visual C# > Console Application

We need to add System.Configuration assembly reference to access configuration setting using ConfigurationManager. To add reference, just right click to References and Click to Add References.

Now we can see that System.Configuration reference added successfully with our project.

So, let’s move to different ways to add the values inside the config file and approach we follow to get it.

Approach One

Let’s take one example, where we need to add some application level settings and access them based on their keys. We can add these setting either inside Web.Config or App.Config. But we need to add <appSettings> section inside the configuration section.

Just follow the following example, where inside the appSettings section; we have defined few keys and their values.

App.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<appSettings>
<add key="Title" value="Configuration Example"/>
<add key="Language" value="CSharp"/>
</appSettings>
</configuration>

To access these values, there is one static class as named “ConfigurationManager” which has one getter property as named AppSettings. We can just pass the key inside the AppSettings and get the desired value from AppSettings section as following.

public static void GetConfigurationValue()
{
var title = ConfigurationManager.AppSettings["title"];
var language = ConfigurationManager.AppSettings["language"]; Console.WriteLine(string.Format("'{0}' project is created in '{1}' language ", title, language));
}

When we implement the above code, we get following out.

Approach Two

Let’s move to next example, just think about if we need to add settings inside section for separation. So, in this situation, we can create custom section inside the configuration section in App.Config/Web.Config as following. Section can make your data more readable and understandable based on your section name.

In following example, we have just created one custom section as named “ApplicationSettings” and added all key/value pairs separately.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="ApplicationSettings" type="System.Configuration.NameValueSectionHandler"/>
</configSections> <ApplicationSettings>
<add key="ApplicationName" value="Configuration Example Project"/>
<add key="Language" value="CSharp"/>
<add key="SecretKey" value="xxxxxxx"/>
</ApplicationSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>

To access custom section settings, first we need to find out the section using GetSection method which is defined inside the ConfigurationManager class and cast the return value as NameValueCollection. It will return all the keys available inside this custom section and based on keys we can get values easily as following.

public static void GetConfigurationUsingSection()
{
var applicationSettings = ConfigurationManager.GetSection("ApplicationSettings")
as NameValueCollection; if (applicationSettings.Count == )
{
Console.WriteLine("Application Settings are not defined");
}
else
{
foreach (var key in applicationSettings.AllKeys)
{
Console.WriteLine(key + " = " + applicationSettings[key]);
}
} }

When we implement the above code, we get following out.

Approach Three

Now move to some tough stuff, here we are going to create section inside the group, so that if required we can add multiple sections in same group. It is basically grouping the same type of section in a group.

In following example, we have created one group as named “BlogGroup” and inside that we have defined one section as named “PostSetting” and its type as a NameValueSectionHandler. “PostSetting” section is containing all the key/value pair separately as following.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="BlogGroup">
<section name="PostSetting" type="System.Configuration.NameValueSectionHandler"/>
</sectionGroup>
<section name="ProductSettings" type="ConfigurationExample.ProductSettings, ConfigurationExample"/>
</configSections> <BlogGroup>
<PostSetting>
<add key="PostName" value="Getting Started With Config Section in .Net"/>
<add key="Category" value="C#"></add>
<add key="Author" value="Mukesh Kumar"></add>
<add key="PostedDate" value="28 Feb 2017"></add>
</PostSetting>
</BlogGroup> <ProductSettings>
<DellSettings ProductNumber="" ProductName="Dell Inspiron" Color="Black" Warranty="2 Years" ></DellSettings>
</ProductSettings> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
</startup>
</configuration>

To read these types of configuration setting, we need to access section based on section group and then we can get all the keys and their values as following code is doing.

public static void GetConfigurationUsingSectionGroup()
{
var PostSetting = ConfigurationManager.GetSection("BlogGroup/PostSetting") as NameValueCollection;
if (PostSetting.Count == )
{
Console.WriteLine("Post Settings are not defined");
}
else
{
foreach (var key in PostSetting.AllKeys)
{
Console.WriteLine(key + " = " + PostSetting[key]);
}
}
}

When we implement the above code, we get following out.

Approach Four

At last we are on advance stage of configuration settings. Sometimes it is required to setup your all key/value pair based on custom class behavior so that we can control it behavior form outer world.

See the following class “DellFeatures”, which shows some custom properties of Dell laptop and we need to add it inside the configuration section. Following class contains some default values if value is not available in configuration section.

 
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace ConfigurationExample
{
public class DellFeatures : ConfigurationElement
{
[ConfigurationProperty("ProductNumber", DefaultValue = , IsRequired = true)]
public int ProductNumber
{
get
{
return (int)this["ProductNumber"];
}
} [ConfigurationProperty("ProductName", DefaultValue = "DELL", IsRequired = true)]
public string ProductName
{
get
{
return (string)this["ProductName"];
}
} [ConfigurationProperty("Color", IsRequired = false)]
public string Color
{
get
{
return (string)this["Color"];
}
}
[ConfigurationProperty("Warranty", DefaultValue = "1 Years", IsRequired = false)]
public string Warranty
{
get
{
return (string)this["Warranty"];
}
}
}
}

To return this setting, we are going to create on more class which returns this as a property. Here we can also add multiple classes as properties.

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace ConfigurationExample
{
public class ProductSettings : ConfigurationSection
{
[ConfigurationProperty("DellSettings")]
public DellFeatures DellFeatures
{
get
{
return (DellFeatures)this["DellSettings"];
}
}
}
}

To implement it inside the configuration section, we are going to change the type of “ProductSettings” as “ConfigurationExample.ProductSettings” which will return all the property of DellFeaturs class.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections> <section name="ProductSettings" type="ConfigurationExample.ProductSettings, ConfigurationExample"/>
</configSections> <BlogGroup>
<PostSetting>
<add key="PostName" value="Getting Started With Config Section in .Net"/>
<add key="Category" value="C#"></add>
<add key="Author" value="Mukesh Kumar"></add>
<add key="PostedDate" value="28 Feb 2017"></add>
</PostSetting>
</BlogGroup> <ProductSettings>
<DellSettings ProductNumber="" ProductName="Dell Inspiron" Color="Black" Warranty="2 Years" ></DellSettings>
</ProductSettings> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
</startup>
</configuration>

To access this type of configuration, same we need to get custom section first and rest of will be accessible very easily as following code.

public static void GetConfigurationUsingCustomClass()
{
var productSettings = ConfigurationManager.GetSection("ProductSettings") as ConfigurationExample.ProductSettings;
if (productSettings == null)
{
Console.WriteLine("Product Settings are not defined");
}
else
{
var productNumber = productSettings.DellFeatures.ProductNumber;
var productName = productSettings.DellFeatures.ProductName;
var color = productSettings.DellFeatures.Color;
var warranty = productSettings.DellFeatures.Warranty; Console.WriteLine("Product Number = " + productNumber);
Console.WriteLine("Product Name = " + productName);
Console.WriteLine("Product Color = " + color);
Console.WriteLine("Product Warranty = " + warranty);
}
}

When we implement the above code, we get following out.

最新文章

  1. 【HTML5&amp;CSS3进阶学习01】气泡组件的实现
  2. JS中的 new 操作符简单理解
  3. android六大框架
  4. js防止客户端多触发
  5. POJ 2549 二分+HASH
  6. 关于 System.IO.FileAttributes 的 Reparse Points
  7. Java再学习——栈(stack)和堆(heap)
  8. MYSQL 专家 ----zhaiwx_yinfeng
  9. maven+hudson构建集成测试平台
  10. Linux的网卡由eth0变成了eth1,如何修复
  11. linux 细节 问题解决
  12. Linux - 其他命令
  13. [日常] DNS解析概述
  14. private、public、protected和默认
  15. git自定义项目钩子和全局钩子
  16. Spring事务传递
  17. Oracle的数据并发与一致性详解(下)
  18. 03-openldap服务端安装配置
  19. UCML JS函数说明
  20. jdk自带的jvisualvm-监控远程linux

热门文章

  1. C语言程序设计100例之(19):欢乐的跳
  2. 前端小白webpack学习(一)
  3. 源生JS实现点击复制功能
  4. DNS解析服务结构图
  5. 常用类-excel转csv
  6. Selenium(十三):验证码的处理、WebDriver原理
  7. SSH框架之Hibernate第二篇
  8. element的表单校验自动定位到该位置
  9. LeetCode刷题191120
  10. 网络编程之tcp协议以及粘包问题