up vote 5 down vote favorite
5
share [g+] share [fb]

I want to create a custom configuration section to handle email notifications. The configuration needs to be in the following format:

<configSections>
    <sectionGroup name="notifications">
        <section name="notification" type="NotificationConfiguration" allowLocation="true" allowDefinition="Everywhere" />
    </sectionGroup>
</configSections>
...
<notifications>
    <notification name="..." enabled="..." delayInMinutes="...">
        <recipients>
            <add email="..." />
            <add email="..." />
            <add email="..." />
        </recipients>
    </notification>
    <notification name="..." enabled="..." delayInMinutes="...">
        <recipients>
            <add email="..." />
            <add email="..." />
            <add email="..." />
        </recipients>
    </notification>
</notifications>
...

I can get this to work fine using NotificationConfiguration config = (NotificationConfiguration) ConfigurationManager.GetSection("notifications\notification"), but this only caters for one <notification> element. How do I accomplish multiple elements to accommodate more than one notification?

The class that handles this is quite lengthy, so I won't paste it here, but it can be downloaded from here:

http://files.getdropbox.com/u/288235/NotificationConfiguration.cs

Thanks.

link|improve this question

You can create a <NotificationsGroup /> outer element, and then put all your notification elements inside that group. This way, you'll be able to achieve what you want to achieve. – Kirtan Jul 21 '09 at 9:23
Check my updated answer. – Kirtan Jul 21 '09 at 10:40
feedback

1 Answer

up vote 1 down vote accepted

You can use the ConfigurationElementCollection Class.

A reference of how to use it can be found on CodeProject.

EDIT: You can create a <NotificationsGroup /> outer element, and then put all your notification elements inside that group. This way, you'll be able to achieve what you want to achieve.

EDIT 2:

<configSections>
    <sectionGroup name="NotificationsGroup">
        <section name="NotificationsGroup" type="NotificationGroupConfiguration" allowLocation="true" allowDefinition="Everywhere" />
    </sectionGroup>
</configSections>

<NotificationsGroup>
    <Notifications>
    </Notifications>
    ... Multiple notifications go here, instead of one.
    <Notifications>
    </Notifications>
</NotificationsGroup>

This means that NotificationsGroup will contain the element collection of Notifications.

link|improve this answer
Hi Kirtan It is my understanding that ConfigurationElementCollection class is used for a collection of elements, not sections. I use that class for the <recipients> tag, but the <notification> tag is defined as a configuration section at the top of the web.config file, so how do I accomplish a collection of sections, as opposed to a collection of elements within a section? – Ravish Jul 21 '09 at 9:16
At the top of the web.config, I define my custom configuration as follows: <configSections> <sectionGroup name="notifications"> <section name="notification" type="NotificationConfiguration" allowLocation="true" allowDefinition="Everywhere" /> </sectionGroup> </configSections> Do you mean a group of notifications, as in my <notifications> tag? – Ravish Jul 21 '09 at 9:34
Thanks for your help Kirtran. The tool below eventually helped a lot too! codeplex.com/csd – Ravish Jul 23 '09 at 9:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.