HttpCookie.Name Property

Definition

Gets or sets the name of a cookie.

public string Name { get; set; }

Property Value

The default value is a null reference (Nothing in Visual Basic) unless the constructor specifies otherwise.

Examples

The following code example receives a cookie collection from the client in the Cookie header and loops through the collection looking for a cookie with the specific name.

int loop1;
 HttpCookie MyCookie;
 HttpCookieCollection MyCookieCollection;

 MyCookieCollection = Request.Cookies;

 for (loop1 = 0; loop1 < MyCookieCollection.Count; loop1++)
 {
    MyCookie = MyCookieCollection[loop1];
    if (MyCookie.Name == "UserName")
    {
       //...
    }
 }

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also