ModuleElement.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Configuration / ModuleElement.cs / 1 / ModuleElement.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Net.Configuration 
{ 
    using System;
    using System.Configuration; 
    using System.Reflection;
    using System.Security.Permissions;

    public sealed class ModuleElement : ConfigurationElement 
    {
        public ModuleElement() 
        { 
            this.properties.Add(this.type);
        } 

        protected override ConfigurationPropertyCollection Properties
        {
            get 
            {
                return this.properties; 
            } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.Type)]
        public string Type
        {
            get { return (string)this[this.type]; } 
            set { this[this.type] = value; }
        } 
 
        ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
 
        readonly ConfigurationProperty type =
            new ConfigurationProperty(ConfigurationStrings.Type,
                                      typeof(string),
                                      null, 
                                      ConfigurationPropertyOptions.None);
 
    } 
}
 


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK