HttpCookiesSection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / HttpCookiesSection.cs / 1305376 / HttpCookiesSection.cs

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

namespace System.Web.Configuration { 
    using System; 
    using System.Xml;
    using System.Configuration; 
    using System.Collections.Specialized;
    using System.Collections;
    using System.IO;
    using System.Text; 
    using System.Security.Permissions;
 
    public sealed class HttpCookiesSection : ConfigurationSection { 
        private static ConfigurationPropertyCollection _properties;
        private static readonly ConfigurationProperty _propHttpOnlyCookies = 
            new ConfigurationProperty("httpOnlyCookies", typeof(bool), false, ConfigurationPropertyOptions.None);
        private static readonly ConfigurationProperty _propRequireSSL =
            new ConfigurationProperty("requireSSL", typeof(bool), false, ConfigurationPropertyOptions.None);
        private static readonly ConfigurationProperty _propDomain = 
            new ConfigurationProperty("domain", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
 
                /*         
                 
  */
        static HttpCookiesSection() { 
            // Property initialization
            _properties = new ConfigurationPropertyCollection();
            _properties.Add(_propHttpOnlyCookies);
            _properties.Add(_propRequireSSL); 
            _properties.Add(_propDomain);
        } 
 
        public HttpCookiesSection() {
        } 


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

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

        [ConfigurationProperty("domain", DefaultValue = "")]
        public string Domain {
            get { 
                return (string)base[_propDomain];
            } 
            set { 
                base[_propDomain] = 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