System.Web 2.0.0.0 System.Configuration.ConfigurationSection The class provides a way to programmatically access and modify the httpCookies section of a configuration file. It defines the settings applied by default to all cookies issued by the application, unless the code issuing the cookie overrides them. One objective of the httpCookies element is to support the use of HttpOnly cookies. HttpOnly cookies (cookies with the HttpOnly attribute) were introduced in Internet Explorer 6 to help mitigate the risk of cross-site scripting. The HttpOnly attribute prevents cookies from being accessed through client-side script. Any information contained in an HttpOnly cookie is less likely to be disclosed to a hacker or a malicious Web site. For more information, search MSDN (msdn.microsoft.com) for "HttpOnly." The can read and write information from and to the related section of the configuration file according to the section property whose value is . Configures properties for cookies used by a Web application. Constructor This constructor is not intended to be used directly from your code. It is called by the ASP.NET configuration system. You obtain an instance of the class by using the method. Initializes a new instance of the class. 2.0.0.0 Property System.Configuration.ConfigurationProperty("domain", DefaultValue="") System.String To be added. To be added. Gets or sets the cookie domain name. 2.0.0.0 Property System.Configuration.ConfigurationProperty("httpOnlyCookies", DefaultValue="False") System.Boolean To be added. The httpCookies element supports the use of HttpOnly cookies. HttpOnly cookies (cookies with the HttpOnly attribute) were introduced in Internet Explorer 6 to help mitigate the risk of cross-site scripting. The HttpOnly attribute prevents cookies from being accessed through client-side script. Any information contained in an HttpOnly cookie is less likely to be disclosed to a hacker or a malicious Web site. For more information, search MSDN (msdn.microsoft.com) for "HttpOnly." Gets or sets a value indicating whether the support for the browser's HttpOnly cookie is enabled. 2.0.0.0 Property System.Configuration.ConfigurationPropertyCollection To be added. To be added. To be added. 2.0.0.0 Property System.Configuration.ConfigurationProperty("requireSSL", DefaultValue="False") System.Boolean To be added. The property enables or disables output of the secure cookie attribute as described in RFC 2109. When used by compliant browsers, the cookie will only be sent back over a connection using SSL/TLS. The default is false. Gets or sets a value indicating whether Secure Sockets Layer (SSL) communication is required. 2.0.0.0