Click here to Skip to main content
6,822,613 members and growing! (16,509 online)
Email Password   helpLost your password?
    Beginner License: The Code Project Open License (CPOL)

Writing a complex custom configuration section

By aftabahmed.net

Technorati Tags: C#,.Net FrameworkHere i posted another entry, showing implementation of a simple configuration section, now consider following listing<customSection>    <elements>      <add name=”FirstAssembly.FirstType” assembly=”FirstAssembly” shoul
C#, Windows, .NET (.NET2.0, .NET3.0, .NET3.5), Dev
Revision:3 (See All)
Posted:2 Jul 2009
Views:4,099
Bookmarked:16 times
Technical Blog
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
2 votes for this technical blog.
Popularity: 1.35 Rating: 4.50 out of 5

1

2

3
1 vote, 50.0%
4
1 vote, 50.0%
5
A Technical Blog article. View entire blog here.

Here i posted another entry, showing implementation of a simple configuration section, now consider following listing

<customSection>
    <elements>
      <add name=”FirstAssembly.FirstType” assembly=”FirstAssembly” shouldrun=”true”></add>
    <add name=”SecondAssembly.SecondType” assembly=”SecondAssembly” shouldrun=”true”></add>
    </elements>
</customSection>

here we have “n” number of elements in the custom configuration section. To handle this kind of scenario, System.Configuration namespace provides you with ConfigurationPropertyCollection class and ConfigurationPropertyCollectionAttribute class. Your can use ConfigurationPropertyCollection to programmatically write you configuration section and ConfigurationPropertyCollectionAttribute  can be used to do the same job declaratively.

There are following steps involved in creating a custom configuration section handler with multiple entries.

  1. Define a class (say CustomElement) to represent configuration section by inheriting it from ConfigurationElement class
  2. Define a class to represent your configuration collection (say CustomeElementCollection) by inheriting it from ConfigurationElementCollection, this will hold a collection of the type you defined in step 1.
  3. Define a class to represent your custom section (say CustomSection) by inheriting it from ConfigurationSection and Implement a property of type that you defined in step 2.

Here is the listing for CustomeElement Class

public class CustomElement : ConfigurationElement
    {
        public CustomElement()
        { 

        } 

        [ConfigurationProperty("name", IsRequired = true)]
        public string Name
        {
            get { return (string)this["name"]; }
            set { this["name"] = value; }
        } 

        [ConfigurationProperty("assembly", IsRequired = true)]
        public string Assembly
        {
            get { return (string)this["assembly"]; }
            set { this["assembly"] = value; }
        } 

        [ConfigurationProperty("shouldrun", IsRequired = true)]
        public bool ShouldRun
        {
            get { return (bool)this["shouldrun"]; }
            set { this["shouldrun"] = value; }
        }
    }

and here is the listing for CustomElementCollection Class, its implementation is similar to any other Collection class,

    public class CustomeElementCollection : ConfigurationElementCollection
    {
        public CustomeElementCollection()
        {
            CustomElement myElement = (CustomElement)CreateNewElement();
            Add(myElement);
        }
        public void Add(CustomElement customElement)
        {
            BaseAdd(customElement);
        } 

        protected override void BaseAdd(ConfigurationElement element)
        {
            base.BaseAdd(element, false);
        } 

        public override ConfigurationElementCollectionType CollectionType
        {
            get
            {
                return ConfigurationElementCollectionType.AddRemoveClearMap;
            }
        } 

        protected override ConfigurationElement CreateNewElement()
        {
            return new CustomElement();
        } 

        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((CustomElement)element).Name;
        } 

        public CustomElement this[int Index]
        {
            get
            {
                return (CustomElement)BaseGet(Index);
            }
            set
            {
                if (BaseGet(Index) != null)
                {
                    BaseRemoveAt(Index);
                }
                BaseAdd(Index,value);
            }
        } 

        new public CustomElement this[string Name]
        {
            get
            {
                return (CustomElement)BaseGet(Name);
            }
        } 

        public int indexof(CustomElement element)
        {
            return BaseIndexOf(element);
        } 

        public void Remove(CustomElement url)
        {
            if (BaseIndexOf(url) >= 0)
                BaseRemove(url.Name);
        } 

        public void RemoveAt(int index)
        {
            BaseRemoveAt(index);
        } 

        public void Remove(string name)
        {
            BaseRemove(name);
        } 

        public void Clear()
        {
            BaseClear();
        } 

    }

and Finally, here is the listing for CustomSection Class,

class CustomSection:ConfigurationSection
    {
        CustomElement element;
        public CustomSection()
        {
            element = new CustomElement();
        } 

        [ConfigurationProperty("elements", IsDefaultCollection = false)]
        [ConfigurationCollection(typeof(CustomeElementCollection),AddItemName="add",
            ClearItemsName="clear",
            RemoveItemName="remove")]
        public CustomeElementCollection Elements
        {
            get {
                return (CustomeElementCollection)base["elements"]; }
        }
    }

Next add following settings to your configuration file

<configSections>
    <section name=”customSection” type=”ConfigurationDemo.CustomSection, ConfigurationDemo” />
  </configSections>

  <customSection>
    <elements>
      <add name=”FirstAssembly.FirstType” assembly=”FirstAssembly” shouldrun=”true”></add>
    <add name=”SecondAssembly.SecondType” assembly=”SecondAssembly” shouldrun=”true”></add>
    </elements>
</customSection>

in the end put this custom section to use like this,

CustomSection myCustomSection = (CustomSection)ConfigurationManager.GetSection(”customSection2″); 

            foreach (CustomElement element in mySecondSectionHandler.Elements)
            {
                if (element.Name != null && element.Name != “”)
                {
                    string name = element.Name;
                    string assembly = element.Assembly;
                    bool shouldrun = element.ShouldRun;
                }
            }

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

aftabahmed.net


Member
Being an software developer, trying to understand the problem, trying to figure out how best it can be solved and then going through the joy of implementing a solution, continously improving it and watching it becoming part of peoples live has been my passion and primary reason that i love my job so much.

I specialise in .Net Framework, C# language, ASP.Net, Distributed Applications using WCF and Web Services (WS.* and REST), WPF, WF and Ajax along with SQL Server.

I have sense of accomplishment and satisfaction that i have been involved in many successful software development projects since last 9 years and since last 6 years i have been working on this exciting technology called .Net Framework and it brings me such a joy that since then both .Net Framework and Myself (professionally!) have been growing together. Next destination in our journey is “THE CLOUD”.
Occupation: Software Developer (Senior)
Location: United States United States

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 2 of 2 (Total in Forum: 2) (Refresh)FirstPrevNext
GeneralThis is not complex PinmemberRad Andy5:40 22 Oct '09  
GeneralThanks PinmemberPaolo Benjamin T. Briones19:35 13 Jul '09  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

PermaLink | Privacy | Terms of Use
Last Updated: 2 Jul 2009
Editor: Sean Ewington
Copyright 2009 by aftabahmed.net
Everything else Copyright © CodeProject, 1999-2010
Web11 | Advertise on the Code Project