SchemeSettingElement.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / SchemeSettingElement.cs / 1305376 / SchemeSettingElement.cs

                            using System; 
using System.Diagnostics;

namespace System.Configuration
{ 
    public sealed class SchemeSettingElement : ConfigurationElement
    { 
        private static readonly ConfigurationPropertyCollection properties; 
        private static readonly ConfigurationProperty name;
        private static readonly ConfigurationProperty genericUriParserOptions; 

        static SchemeSettingElement()
        {
            name = new ConfigurationProperty(CommonConfigurationStrings.SchemeName, typeof(string), null, 
                ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
 
            genericUriParserOptions = new ConfigurationProperty(CommonConfigurationStrings.GenericUriParserOptions, 
                typeof(GenericUriParserOptions), GenericUriParserOptions.Default,
                ConfigurationPropertyOptions.IsRequired); 

            properties = new ConfigurationPropertyCollection();
            properties.Add(name);
            properties.Add(genericUriParserOptions); 
        }
 
        [ConfigurationProperty(CommonConfigurationStrings.SchemeName, 
            DefaultValue = null, IsRequired = true, IsKey = true)]
        public string Name 
        {
            get { return (string)this[name]; }
        }
 
        [ConfigurationProperty(CommonConfigurationStrings.GenericUriParserOptions,
            DefaultValue = ConfigurationPropertyOptions.None, IsRequired = true)] 
        public GenericUriParserOptions GenericUriParserOptions 
        {
            get { return (GenericUriParserOptions)this[genericUriParserOptions]; } 
        }

        protected override ConfigurationPropertyCollection Properties
        { 
            get { return properties; }
        } 
    } 

    internal sealed class SchemeSettingInternal 
    {
        private string name;
        private GenericUriParserOptions options;
 
        public SchemeSettingInternal(string name, GenericUriParserOptions options)
        { 
            Debug.Assert(name != null, "'name' must not be null."); 

            this.name = name.ToLowerInvariant(); 
            this.options = options;
        }

        public string Name 
        {
            get { return name; } 
        } 

        public GenericUriParserOptions Options 
        {
            get { return options; }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Diagnostics;

namespace System.Configuration
{ 
    public sealed class SchemeSettingElement : ConfigurationElement
    { 
        private static readonly ConfigurationPropertyCollection properties; 
        private static readonly ConfigurationProperty name;
        private static readonly ConfigurationProperty genericUriParserOptions; 

        static SchemeSettingElement()
        {
            name = new ConfigurationProperty(CommonConfigurationStrings.SchemeName, typeof(string), null, 
                ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
 
            genericUriParserOptions = new ConfigurationProperty(CommonConfigurationStrings.GenericUriParserOptions, 
                typeof(GenericUriParserOptions), GenericUriParserOptions.Default,
                ConfigurationPropertyOptions.IsRequired); 

            properties = new ConfigurationPropertyCollection();
            properties.Add(name);
            properties.Add(genericUriParserOptions); 
        }
 
        [ConfigurationProperty(CommonConfigurationStrings.SchemeName, 
            DefaultValue = null, IsRequired = true, IsKey = true)]
        public string Name 
        {
            get { return (string)this[name]; }
        }
 
        [ConfigurationProperty(CommonConfigurationStrings.GenericUriParserOptions,
            DefaultValue = ConfigurationPropertyOptions.None, IsRequired = true)] 
        public GenericUriParserOptions GenericUriParserOptions 
        {
            get { return (GenericUriParserOptions)this[genericUriParserOptions]; } 
        }

        protected override ConfigurationPropertyCollection Properties
        { 
            get { return properties; }
        } 
    } 

    internal sealed class SchemeSettingInternal 
    {
        private string name;
        private GenericUriParserOptions options;
 
        public SchemeSettingInternal(string name, GenericUriParserOptions options)
        { 
            Debug.Assert(name != null, "'name' must not be null."); 

            this.name = name.ToLowerInvariant(); 
            this.options = options;
        }

        public string Name 
        {
            get { return name; } 
        } 

        public GenericUriParserOptions Options 
        {
            get { return options; }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

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