HttpCookie Class
Provides a type-safe way to create and manipulate individual HTTP cookies.
Assembly: System.Web (in System.Web.dll)
The HttpCookie type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | HttpCookie(String) | Creates and names a new cookie. |
![]() | HttpCookie(String, String) | Creates, names, and assigns a value to a new cookie. |
| Name | Description | |
|---|---|---|
![]() | Domain | Gets or sets the domain to associate the cookie with. |
![]() | Expires | Gets or sets the expiration date and time for the cookie. |
![]() | HasKeys | Gets a value indicating whether a cookie has subkeys. |
![]() | HttpOnly | Gets or sets a value that specifies whether a cookie is accessible by client-side script. |
![]() | Item | Gets a shortcut to the HttpCookie::Values property. This property is provided for compatibility with previous versions of Active Server Pages (ASP). |
![]() | Name | Gets or sets the name of a cookie. |
![]() | Path | Gets or sets the virtual path to transmit with the current cookie. |
![]() | Secure | Gets or sets a value indicating whether to transmit the cookie using Secure Sockets Layer (SSL)--that is, over HTTPS only. |
![]() | Value | Gets or sets an individual cookie value. |
![]() | Values | Gets a collection of key/value pairs that are contained within a single cookie object. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The HttpCookie class gets and sets properties of individual cookies. The HttpCookieCollection class provides methods to store, retrieve, and manage multiple cookies.
ASP.NET includes two intrinsic cookie collections. The collection accessed through the Cookies collection of the HttpRequest object contains cookies transmitted by the client to the server in the Cookie header. The collection accessed through the Cookies collection of the HttpResponse object contains new cookies created on the server and transmitted to the client in the Set-Cookie HTTP response header.
| Topic | Location |
|---|---|
| How to: Write a Cookie | Building ASP .NET Web Applications |
| How to: Write a Cookie | Building ASP .NET Web Applications |
The following code example demonstrates how to check for a cookie named DateCookieExample in the HttpRequest object. If the cookie is not found, it is created and added to the HttpResponse object. The cookie is set to expire in 10 minutes.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


