ScriptingAuthenticationServiceSection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / Configuration / ScriptingAuthenticationServiceSection.cs / 1 / ScriptingAuthenticationServiceSection.cs

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

namespace System.Web.Configuration { 
    using System; 
    using System.Configuration;
    using System.Security.Permissions; 
    using System.Web;
    using System.Web.Configuration;

    [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] 
    public sealed class ScriptingAuthenticationServiceSection : ConfigurationSection {
 
        private static readonly ConfigurationProperty _propEnabled = 
            new ConfigurationProperty("enabled",
                                        typeof(bool), 
                                        false);

        private static readonly ConfigurationProperty _propRequireSSL =
            new ConfigurationProperty("requireSSL", 
                                        typeof(bool),
                                        false); 
 
        private static ConfigurationPropertyCollection _properties = BuildProperties();
 
        private static ConfigurationPropertyCollection BuildProperties() {
            ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
            properties.Add(_propEnabled);
            properties.Add(_propRequireSSL); 
            return properties;
        } 
 
        internal static ScriptingAuthenticationServiceSection GetConfigurationSection() {
            return (ScriptingAuthenticationServiceSection)WebConfigurationManager.GetWebApplicationSection("system.web.extensions/scripting/webServices/authenticationService"); 
        }

        protected override ConfigurationPropertyCollection Properties {
            get { return _properties; } 
        }
 
        [ConfigurationProperty("enabled", DefaultValue = false)] 
        public bool Enabled {
            get { return (bool)this[_propEnabled]; } 
            set { this[_propEnabled] = value; }
        }

        [ConfigurationProperty("requireSSL", DefaultValue = false)] 
        public bool RequireSSL {
            get { return (bool) this[_propRequireSSL]; } 
            set { this[_propRequireSSL] = value; } 
        }
    } 
}

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

namespace System.Web.Configuration { 
    using System; 
    using System.Configuration;
    using System.Security.Permissions; 
    using System.Web;
    using System.Web.Configuration;

    [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] 
    public sealed class ScriptingAuthenticationServiceSection : ConfigurationSection {
 
        private static readonly ConfigurationProperty _propEnabled = 
            new ConfigurationProperty("enabled",
                                        typeof(bool), 
                                        false);

        private static readonly ConfigurationProperty _propRequireSSL =
            new ConfigurationProperty("requireSSL", 
                                        typeof(bool),
                                        false); 
 
        private static ConfigurationPropertyCollection _properties = BuildProperties();
 
        private static ConfigurationPropertyCollection BuildProperties() {
            ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
            properties.Add(_propEnabled);
            properties.Add(_propRequireSSL); 
            return properties;
        } 
 
        internal static ScriptingAuthenticationServiceSection GetConfigurationSection() {
            return (ScriptingAuthenticationServiceSection)WebConfigurationManager.GetWebApplicationSection("system.web.extensions/scripting/webServices/authenticationService"); 
        }

        protected override ConfigurationPropertyCollection Properties {
            get { return _properties; } 
        }
 
        [ConfigurationProperty("enabled", DefaultValue = false)] 
        public bool Enabled {
            get { return (bool)this[_propEnabled]; } 
            set { this[_propEnabled] = value; }
        }

        [ConfigurationProperty("requireSSL", DefaultValue = false)] 
        public bool RequireSSL {
            get { return (bool) this[_propRequireSSL]; } 
            set { this[_propRequireSSL] = value; } 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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