﻿<?xml version="1.0" encoding="utf-8"?><Type Name="HttpCookie" FullName="System.Web.HttpCookie"><TypeSignature Language="C#" Value="public sealed class HttpCookie" Maintainer="auto" /><AssemblyInfo><AssemblyName>System.Web</AssemblyName><AssemblyPublicKey></AssemblyPublicKey><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement><Base><BaseTypeName>System.Object</BaseTypeName></Base><Interfaces /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Web.HttpCookie" /> class gets and sets properties of individual cookies. The <see cref="T:System.Web.HttpCookieCollection" /> class provides methods to store, retrieve, and manage multiple cookies. </para><para>ASP.NET includes two intrinsic cookie collections. The collection accessed through the <see cref="P:System.Web.HttpRequest.Cookies" /> collection of the <see cref="T:System.Web.HttpRequest" /> object contains cookies transmitted by the client to the server in the Cookie header. The collection accessed through the <see cref="P:System.Web.HttpResponse.Cookies" /> collection of the <see cref="T:System.Web.HttpResponse" /> object contains new cookies created on the server and transmitted to the client in the Set-Cookie HTTP response header.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Provides a type-safe way to create and manipulate individual HTTP cookies.</para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public HttpCookie (string name);" /><MemberType>Constructor</MemberType><ReturnValue /><Parameters><Parameter Name="name" Type="System.String" /></Parameters><Docs><remarks>The cookie is created with an empty value ("").</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates and names a new cookie.</para></summary><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the new cookie. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public HttpCookie (string name, string value);" /><MemberType>Constructor</MemberType><ReturnValue /><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks>Creates a cookie with the given name and value.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates, names, and assigns a value to a new cookie.</para></summary><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the new cookie. </param><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />The value of the new cookie. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Domain"><MemberSignature Language="C#" Value="public string Domain { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters></Parameters><Docs><value>The current value of the domain.   The default value is null.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Setting the Domain attribute limits transmission of the cookie to clients requesting a resource from that domain.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the domain to associate the cookie with.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Expires"><MemberSignature Language="C#" Value="public DateTime Expires { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.DateTime</ReturnType></ReturnValue><Parameters></Parameters><Docs><value>The time and day when when the cookie will expire on the client.</value><remarks>If this property isn't set, its value should be set to System.DateTime.MinValue, meaning that the cookie will expire as soon as the browser closes.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the expiration date and time for the cookie.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="HasKeys"><MemberSignature Language="C#" Value="public bool HasKeys { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added: an object of type 'bool'</value><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether a cookie has subkeys.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="HttpOnly"><MemberSignature Language="C#" Value="public bool HttpOnly { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Microsoft Internet Explorer version 6 Service Pack 1 and later supports a cookie property, <see cref="P:System.Web.HttpCookie.HttpOnly" />, that can help mitigate cross-site scripting threats that result in stolen cookies. Stolen cookies can contain sensitive information identifying the user to the site, such as the ASP.NET session ID or forms authentication ticket, and can be replayed by the attacker in order to masquerade as the user or obtain sensitive information. When an HttpOnly cookie is received by a compliant browser, it is inaccessible to client-side script. </para><block subset="none" type="note"><para>Setting the <see cref="P:System.Web.HttpCookie.HttpOnly" /> property to true does not prevent an attacker with access to the network channel from accessing the cookie directly. Consider using Secure Sockets Layer (SSL) to help protect against this. Workstation security is also important, as a malicious user could use an open browser window or a computer containing persistent cookies to obtain access to a Web site with a legitimate user's identity.</para></block><para>For more information on possible attacks and how this property can help mitigate them, see <see cref="http://go.microsoft.com/fwlink/?LinkId=41580">Mitigating Cross-site Scripting With HTTP-only Cookies</see>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value that specifies whether a cookie is accessible by client-side script.</para></summary></Docs></Member><Member MemberName="Item"><MemberSignature Language="C#" Value="public string this[string key] { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="key" Type="System.String" /></Parameters><Docs><param name="key">To be added: an object of type 'string'</param><summary>To be added</summary><value>To be added: an object of type 'string'</value><remarks>To be added</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Name"><MemberSignature Language="C#" Value="public string Name { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters></Parameters><Docs><value>The cookie name.</value><remarks>Sets and resets the name of the cookie.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the name of a cookie.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Path"><MemberSignature Language="C#" Value="public string Path { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters></Parameters><Docs><value>The current path value, by default it is "/".</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Web.HttpCookie.Path" /> property extends the <see cref="P:System.Web.HttpCookie.Domain" /> property to completely describe the specific URL to which the cookie applies. For example, in the URL http:/www.microsoft.com/asp, the domain is www.microsoft.com and the path is /asp.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the virtual path to transmit with the current cookie.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Secure"><MemberSignature Language="C#" Value="public bool Secure { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters></Parameters><Docs><value>True if the value was transmited over a secure connection.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>To set the transmission of cookies using SSL for an entire application, enable it in the application's configuration file, Web.config, which resides in the root directory of the application. For more information, see <format type="text/html"><a href="74790718-bfa3-4935-bc9a-59c88797e08f">httpCookies Element (ASP.NET Settings Schema)</a></format>. Values set programmatically using the <see cref="P:System.Web.HttpCookie.Secure" /> property override values set in the Web.config file.</para><para>When dealing with sensitive information, it is strongly recommended that you use HTTPS protocol with SSL encryption. SSL protects against data being altered (data integrity), protects a user's identity (confidentiality), and assures that data originates from the expected client (authentication). For more information on the benefits of encryption, see <format type="text/html"><a href="f96284bc-7b73-44b5-ac59-fac613ad09f8">Cryptography Overview</a></format>. For more information about configuring SSL on an Internet Information Services (IIS) Web server, see <see cref="http://go.microsoft.com/fwlink/?LinkId=38553">Configuring SSL on a Web Server or a Web Site</see>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether to transmit the cookie using Secure Sockets Layer (SSL)--that is, over HTTPS only.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Value"><MemberSignature Language="C#" Value="public string Value { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters></Parameters><Docs><value>The current value stored in the cookie.</value><remarks>The current cookie value, this does not include any other properties, for those you must use the property accessors.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets an individual cookie value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Values"><MemberSignature Language="C#" Value="public System.Collections.Specialized.NameValueCollection Values { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Collections.Specialized.NameValueCollection</ReturnType></ReturnValue><Parameters /><Docs><value>a <see cref="T:System.Collections.Specialized.NameValueCollection" /></value><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a collection of key/value pairs that are contained within a single cookie object.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>