HttpCookieCollection.Get Method (Int32)

 
Use BaseTrue

Returns the HttpCookie item with the specified index from the cookie collection.

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

Public Function Get (
	index As Integer
) As HttpCookie

Parameters

index
Type: System.Int32

The index of the cookie to return from the collection.

Return Value

Type: System.Web.HttpCookie

The HttpCookie specified by index.

The following example returns each cookie from the cookie collection, checks whether it is named "LastVisit", and, if "LastVisit" is found, updates its value to the current date and time.

Dim loop1 As Integer
 Dim MyCookie As HttpCookie
 Dim MyCookieCollection As HttpCookieCollection = Request.Cookies

 For loop1 = 0 To MyCookieCollection.Count - 1
    MyCookie = MyCookieCollection.Get(loop1)
    If MyCookie.Name = "LastVisit" Then
       MyCookie.Value = DateTime.Now().ToString()
       MyCookieCollection.Set(MyCookie)
    End If
 Next loop1

.NET Framework
Available since 1.1
Return to top
Show: