Sdílet prostřednictvím


HttpCookieCollection.GetKey(Int32) Metoda

Definice

Vrátí klíč (název) souboru cookie v zadaném číselném indexu.

public:
 System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String

Parametry

index
Int32

Index klíče, který se má načíst z kolekce.

Návraty

String

Název souboru cookie určený .index

Příklady

Následující příklad vrátí každý soubor cookie z kolekce souborů cookie, zkontroluje, jestli má název LastVisit, a pokud se najde LastVisit, aktualizuje jeho hodnotu na aktuální datum a čas.

int loop1;

 HttpCookieCollection MyCookieCollection = Response.Cookies;

 for(loop1 = 0; loop1 < MyCookieCollection.Count; loop1++)
 {
    if(MyCookieCollection.GetKey(loop1) == "LastVisit")
    {
       MyCookieCollection[loop1].Value = DateTime.Now.ToString();
       MyCookieCollection.Set(MyCookieCollection[loop1]);
    }
 }
Dim loop1 As Integer
 Dim MyCookie As HttpCookie
 Dim MyCookieCollection As HttpCookieCollection = Request.Cookies
 
 For loop1 = 0 To MyCookieCollection.Count - 1
    If MyCookieCollection.GetKey(loop1) = "LastVisit" Then
       MyCookieCollection(loop1).Value = DateTime.Now().ToString()
       MyCookieCollection.Set(MyCookieCollection(loop1))
       Exit For
    End If
 Next loop1

Platí pro