HttpCookie.Name Property

 

Gets or sets the name of a cookie.

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

Public Property Name As String

Property Value

Type: System.String

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

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.

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

.NET Framework
Available since 1.1
Return to top
Show: