Click here to Skip to main content
15,881,381 members
Articles / Web Development / ASP.NET

Create Custom Application Block Using .NET Enterprise Library

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
21 Oct 2009CPOL7 min read 37.6K   311   32  
This white paper is written in a view to help developer to create custom application block using .NET Enterprise Library.
using System;
using System.Configuration;

using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;
using Project.Practice.DB;
namespace Project.Practice.DB.Configuration
{
    public class DBSettings : SerializableConfigurationSection
    {
        public const string SectionName = "dbConfiguration";
        private const string DBProvidersProviderProperty = "dbProviders";
        private const string DefaultDBProviderProperty = "defaultDBProvider";
        public DBSettings() { }


        [ConfigurationProperty(DBProvidersProviderProperty, IsRequired = true)]
        public NameTypeConfigurationElementCollection<DBData> DBProviders
        {
            get { return (NameTypeConfigurationElementCollection<DBData>)base[DBProvidersProviderProperty]; }
        }

        [ConfigurationProperty(DefaultDBProviderProperty, IsRequired = true)]
        public string DefaultDBProvider
        {
            get { return (string)base[DefaultDBProviderProperty]; }
        }
    }
}




By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Technical Lead
Australia Australia
Whatsup-->Exploring--> MVC/HTML5/Javascript & Virtualization.......!
www.santoshpoojari.blogspot.com

Comments and Discussions