HttpCookie.Name Property  
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.
Gets or sets the name of a cookie.
public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
	public string Name { get; set; }
	member this.Name : string with get, set
	Public Property Name As String
	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")
    {
       //...
    }
 }
Dim loop1 As Integer
 Dim MyCookie As HttpCookie
 Dim MyCookieCollection As HttpCookieCollection 
 
 MyCookieCollection = Request.Cookies
 
 For loop1 = 0 TO MyCookieCollection.Count - 1
    MyCookie = MyCookieCollection(loop1)
    If MyCookie.Name = "UserName" Then
       '...
    End If
 Next loop1