5,693,062 members and growing! (18,624 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Beginner

Understanding Section Handlers - App.config File

By Palanisamy Veerasingam

This article explains configuration section handlers defined in the System.Configuration namespace and explains how to create custom sections handlers by implemeting the IConfigurationSectionHandler interface.
XML, C#, Windows, .NET, Visual Studio, ASP.NET, Dev

Posted: 14 Jul 2005
Updated: 15 Jul 2005
Views: 180,577
Bookmarked: 104 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
42 votes for this Article.
Popularity: 6.96 Rating: 4.29 out of 5
2 votes, 4.8%
1
1 vote, 2.4%
2
3 votes, 7.1%
3
13 votes, 31.0%
4
23 votes, 54.8%
5

Introduction

This article explains configuration section handlers defined in the System.Configuration namespace and explains how to create custom section handlers by implementing the interface IConfigurationSectionHandler.

What we can do with App.config?

A configuration file can contain information that the application reads at run time. We can use configuration sections to specify this information in configuration files. The .NET Framework provides several predefined configuration sections and developers can also create custom configuration sections.

Configuration sections have two parts: a configuration section declaration and the configuration settings. We can put configuration section declarations and configuration settings in the machine configuration file or in the application configuration file. At run time, section handlers, which are classes that implement the IConfigurationSectionHandler interface, read settings in the machine configuration file first, followed by the application configuration file. Depending on the section handler, either the settings in the application file override the settings in the machine file or the settings from both files are merged.

Note: It’s not a good practice to specify application settings in machine.config file.

There are two types of configuration sections:

  • Predefined configuration section (appSettings).
  • User-Defined configuration section(s).

Predefined configuration Section (appSettings)

The .NET Framework provides a predefined configuration section called appSettings. This section is declared in the Machine.config file as follows:

<section name="appSettings" 
    type="System.Configuration.NameValueFileSectionHandler, 
      System, Version=1.0.5000.0, Culture=neutral, 
      PublicKeyToken=b77a5c561934e089"/>

The sample declaration of the appSettings is:

<appSettings file="appSettings.xml"/>

Application settings are defined in an external file, which should be in the application bin folder.

A sample appSettings.xml is:

<?xml version="1.0" encoding="utf-8"?> 
<appSettings>
    <add key="article" value="Configuration Sections"/>
    <add key="author" value="Palanisamy Veerasingam"/>
</appSettings>

or we can keep the appSettings in the App.config file itself:

<appSettings>
    <add key="author" value="Palanisamy Veerasingam"/>
    <add key="article" value="Configuration Sections"/>   
</appSettings>

ConfigurationSettings.AppSettings is a special property that provides a shortcut to application settings defined in the <appSettings> section of the configuration file. The following example shows how to retrieve the author name defined in the previous configuration section example:

public string GetAuthor()
{
    return (ConfigurationSettings.AppSettings["author"]);
}

User-Defined configuration sections or Custom configuration sections

Declaring custom configuration sections

<configSections>
    <section name="sampleSection"
    type="System.Configuration.SingleTagSectionHandler" />
</configSections>

The <section> element has two properties:

  • The name attribute, which is the name of the element that contains the information the section handler reads.
  • The type attribute, which is the name of the class that reads the information.

We can specify the following values to this type attribute:

  • System.Configuration.NameValueSectionHandler – Provides name-value pair configuration information from a configuration section and returns System.Collections.Specialized.NameValueCollection object.
  • System.Configuration.DictionarySectionHandler - Reads key-value pair configuration information for a configuration section and returns System.Collections.Hashtable object.
  • System.Configuration.SingleTagSectionHandler - Reads key-value pair configuration information for a configuration section and returns the System.Collections.Hashtable object.
  • System.Configuration.IgnoreSectionHandler - Provides a section handler definition for configuration sections read and handled by systems other than System.Configuration. To access this section, we have to parse the whole App.config XML file.
  • User defined section handlers, which implement System.Configuration.IConfigurationSectionHandler.

Also, we can use <sectionGroup> tags for more detailed declaration of our sections as follows:

<sectionGroup name="mainGroup">
<sectionGroup name="subGroup">
    <section ...
</sectionGroup>
</sectionGroup>

I hope that by looking at the sample, you can understand the difference between these handlers. I not yet faced a situation to use IgnoreSectionHandler; in that case using a different file will be a good practice, I think so.

Declaring user-defined section handlers

To declare a user-defined section handler, create a class by implementing the interface System.Configuration.IconfigurationSectionHandler.

A sample class declaration is:

public class MyConfigHandler:IconfigurationSectionHandler{…}

There is only one method defined in the interface IconfigurationSectionHandler with the following signature:

object Create (object parent, object configContext, XmlNode section)
  • parent - The configuration settings in a corresponding parent configuration section.
  • configContext - An HttpConfigurationContext when Create is called from the ASP.NET configuration system. Otherwise, this parameter is reserved and is a null reference.
  • section - The XmlNode that contains the configuration information from the configuration file. Provides direct access to the XML contents of the configuration section.
  • Return value - A configuration object.

Sample SectionHandler class definition follows:

public class MyConfigHandler:IConfigurationSectionHandler
{
    public MyConfigHandler(){}

    public object Create(object parent, 
           object configContext, System.Xml.XmlNode section)
    {
        CCompanyAddr objCompany=new CCompanyAddr();
        objCompany.CompanyName = section.SelectSingleNode("companyName").InnerText;
        objCompany.DoorNo = section.SelectSingleNode("doorNo").InnerText;
        objCompany.Street = section.SelectSingleNode("street").InnerText;
        objCompany.City = section.SelectSingleNode("city").InnerText;
        objCompany.PostalCode = 
          Convert.ToInt64(section.SelectSingleNode("postalCode").InnerText);
        objCompany.Country = section.SelectSingleNode("country").InnerText;
        return objCompany;
    }
}

CCompanyAddr is another class defined with the above used properties with corresponding private members.

I have declared a section in the App.config file as follows:

<configSections>
    ...
    <sectionGroup name="companyInfo">
    <section name="companyAddress" 
            type="ConfigSections.MyConfigHandler,ConfigSections"/>
    </sectionGroup>

</configSections>

ConfigSections is the name of the namespace.

Then the section is declared in App.config file as follows:

<companyInfo> 
    <companyAddress> 
<companyName>Axxonet Solutions India Pvt Ltd</companyName>
<doorNo>1301</doorNo>
<street>13th Cross, Indira Nagar, 2nd Stage</street>
<city>Bangalore</city>
<postalCode>560038</postalCode>
<country>India</country>
    </companyAddress>
</companyInfo>

To read companyAddress settings from App.config, we have to use the ConfigurationSettings.GetConfig as follows:

CCompanyAddr obj = 
  (CCompanyAddr)ConfigurationSettings.GetConfig("companyInfo/companyAddress");
  • ConfigurationSettings.GetConfig - Returns configuration settings for a user-defined configuration section.

Conclusion

I have written a very simple application to understand these section handlers, so I haven’t commented my code. Feel free to reply.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Palanisamy Veerasingam


I have been with .NET technologies since 2004. Working as a senior IT Associate in D&B's PSAPL, Chennai-India development center.
Occupation: Web Developer
Location: India India

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 36 (Total in Forum: 36) (Refresh)FirstPrevNext
GeneralProblemas with Windows AppmemberXavito7:57 4 Jun '08  
GeneralHow to write and Update the data? Please HelpmemberBhuMan1:56 28 Mar '08  
GeneralStoring a collection on your app.config using Section HandlersmemberIvan (Zaragoza)11:11 17 Oct '07  
GeneralHow to write data into App.Configmemberayurhdfkl22:23 13 Sep '07  
GeneralError when running program in VS2005membergaryrg96:49 1 Aug '07  
GeneralHow to iterate through user defined settingsmemberGrahamCooke3:47 12 Jun '07  
GeneralRe: How to iterate through user defined settingsmemberPalanisamy Veerasingam20:53 12 Jun '07  
GeneralRe: How to iterate through user defined settingsmemberGrahamCooke0:54 13 Jun '07  
GeneralRe: How to iterate through user defined settingsmemberGrahamCooke1:11 13 Jun '07  
Generalencrypting ConnectionStrings section in App.Config file?memberRakesh.Gunijan4:35 15 Mar '07  
QuestionRead any config File using System.Configuartion namespace.memberziaulh20:39 11 Feb '07  
QuestionGetting errors with Project level namespacememberSBendBuckeye14:12 18 Jan '07  
Questionapp.config deploymemberarkgroup11:02 20 Dec '06  
Generalgreat - thanks :)memberMeierM21:14 28 Sep '06  
QuestionConfig Sections in App.ConfigmemberRenuKhot20:45 18 Sep '06  
AnswerRe: Config Sections in App.ConfigmemberPalanisamy Veerasingam21:27 19 Sep '06  
GeneralApp.Config and Xml Files HELP!!memberStixoffire222:19 30 Aug '06  
GeneralRe: App.Config and Xml Files HELP!!memberPalanisamy Veerasingam19:22 31 Aug '06  
GeneralError: Configuration system failed to initializememberJack Rwland12:58 23 May '06  
GeneralRe: Error: Configuration system failed to initializememberPalanisamy Veerasingam20:37 31 May '06  
GeneralRe: Error: Configuration system failed to initializememberJack Rwland7:42 1 Jun '06  
AnswerRe: Error: Configuration system failed to initializemembersahami9:52 12 Oct '06  
GeneralRe: Error: Configuration system failed to initializememberrwg13:16 23 Jan '07  
GeneralRe: Error: Configuration system failed to initializememberpkp0023:32 11 Jul '07  
GeneralRe: Error: Configuration system failed to initializememberAsghar Panahy7:00 8 May '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 15 Jul 2005
Editor: Smitha Vijayan
Copyright 2005 by Palanisamy Veerasingam
Everything else Copyright © CodeProject, 1999-2008
Web09 | Advertise on the Code Project