This documentation is archived and is not being maintained.

HttpCookieCollection Constructor

Initializes a new instance of the HttpCookieCollection class.

[Visual Basic]
Public Sub New()
[C#]
public HttpCookieCollection();
[C++]
public: HttpCookieCollection();
[JScript]
public function HttpCookieCollection();

Remarks

ASP.NET includes two intrinsic cookie collections. The collection accessible through Cookies contains cookies transmitted by the client to the server in the Cookie header. The collection accessible through Cookies contains cookies generated on the server and transmitted to the client in the Set-Cookie header.

Example

The following example creates a new cookie collection object and fills it with the cookies received from the client.

[Visual Basic] 
Dim MyCookieCollection As New HttpCookieCollection()
 MyCookieCollection = Request.Cookies
    

[C#] 
HttpCookieCollection MyCookieCollection = new HttpCookieCollection();
 MyCookieCollection = Request.Cookies;
    

[C++] 
HttpCookieCollection* MyCookieCollection = new HttpCookieCollection();
 MyCookieCollection = Request->Cookies;
    

[JScript] 
var myCookieCollection : HttpCookieCollection = new HttpCookieCollection()
    

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also

HttpCookieCollection Class | HttpCookieCollection Members | System.Web Namespace

Show: