HttpResponse::AppendCookie Method (HttpCookie^)
.NET Framework (current version)
This API supports the product infrastructure and is not intended to be used directly from your code.
Adds an HTTP cookie to the intrinsic cookie collection.
Assembly: System.Web (in System.Web.dll)
Parameters
- cookie
-
Type:
System.Web::HttpCookie^
The HttpCookie to add to the output stream.
| Exception | Condition |
|---|---|
| HttpException | A cookie is appended after the HTTP headers have been sent. |
The following example creates a new cookie named LastVisit, sets the value of the cookie to the current date and time, and appends 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.
.NET Framework
Available since 1.1
Available since 1.1
Show: