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::Get Method (String^)

 
Use BaseTrue

Returns the cookie with the specified name from the cookie collection.

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

public:
HttpCookie^ Get(
	String^ name
)

Parameters

name
Type: System::String^

The name of the cookie to retrieve from the collection.

Return Value

Type: System.Web::HttpCookie^

The HttpCookie specified by name.

If the named cookie does not exist, this method creates a new cookie with that name.

The following example captures the cookie collection sent by the client into a new cookie collection, retrieves the cookie named "LastVisit" from the new collection, and updates the cookie's value to the current date and time.

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