HttpCookieCollection Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the HttpCookieCollection class.
public:
HttpCookieCollection();
public HttpCookieCollection ();
Public Sub New ()
Examples
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;
Dim MyCookieCollection As New HttpCookieCollection()
MyCookieCollection = Request.Cookies
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.