HttpCookieCollection.HttpCookieCollection Constructor

Initializes a new instance of the HttpCookieCollection class.

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

public HttpCookieCollection ()
public HttpCookieCollection ()
public function HttpCookieCollection ()
Not applicable.

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.

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

HttpCookieCollection MyCookieCollection = new HttpCookieCollection();
 MyCookieCollection = Request.Cookies;
    

HttpCookieCollection myCookieCollection = new HttpCookieCollection();
myCookieCollection = get_Request().get_Cookies();

var myCookieCollection : HttpCookieCollection = new HttpCookieCollection()
    

  • AspNetHostingPermission  for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: