Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpResponse::Cookies Property

 

Gets the response cookie collection.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
property HttpCookieCollection^ Cookies {
	HttpCookieCollection^ get();
}

Property Value

Type: System.Web::HttpCookieCollection^

The response cookie collection.

ASP.NET includes two intrinsic cookie collections. The collection accessed through the Cookies collection of HttpRequest contains cookies transmitted by the client to the server in the Cookie header. The collection accessed through the Cookies collection of HttpResponse contains new cookies created on the server and transmitted to the client in the Set-Cookie header.

After you add a cookie by using the HttpResponse::Cookies collection, the cookie is immediately available in the HttpRequest::Cookies collection, even if the response has not been sent to the client.

The following example creates a new cookie named LastVisit, sets the value of the cookie to the current date and time, and adds the cookie to the current cookie collection. All cookies in the cookie collection are sent to the client in the Set-Cookie header with the HTTP output stream.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft