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.

HttpCookieCollection::Add Method (HttpCookie^)

 

Adds the specified cookie to the cookie collection.

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

public:
void Add(
	HttpCookie^ cookie
)

Parameters

cookie
Type: System.Web::HttpCookie^

The HttpCookie to add to the collection.

Any number of cookie collections can exist within an application, but only the collection referenced by the intrinsic Cookies object is sent to the client.

The Add method allows duplicate cookies in the cookie collection. Use the Set method to ensure the uniqueness of cookies in the cookie collection.

The following example creates a new cookie collection and a new cookie named "LastVisit", sets the value of the cookie to the current date and time, and adds the cookie to the new collection.

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