HttpRequest.Cookies Egenskap

Definition

Hämtar en samling cookies som skickas av klienten.

public:
 property System::Web::HttpCookieCollection ^ Cookies { System::Web::HttpCookieCollection ^ get(); };
public System.Web.HttpCookieCollection Cookies { get; }
member this.Cookies : System.Web.HttpCookieCollection
Public ReadOnly Property Cookies As HttpCookieCollection

Egenskapsvärde

Ett HttpCookieCollection objekt som representerar klientens cookievariabler.

Exempel

Följande kodexempel loopar igenom alla cookies som skickas av klienten och skickar namn, förfallodatum, säkerhetsparameter och värden för varje cookie till HTTP-utdata.

int loop1, loop2;
HttpCookieCollection MyCookieColl;
HttpCookie MyCookie;

MyCookieColl = Request.Cookies;

// Capture all cookie names into a string array.
String[] arr1 = MyCookieColl.AllKeys;

// Grab individual cookie objects by cookie name.
for (loop1 = 0; loop1 < arr1.Length; loop1++)
{
   MyCookie = MyCookieColl[arr1[loop1]];
   Response.Write("Cookie: " + MyCookie.Name + "<br>");
   Response.Write ("Secure:" + MyCookie.Secure + "<br>");

   //Grab all values for single cookie into an object array.
   String[] arr2 = MyCookie.Values.AllKeys;

   //Loop through cookie Value collection and print all values.
   for (loop2 = 0; loop2 < arr2.Length; loop2++)
   {
      Response.Write("Value" + loop2 + ": " + Server.HtmlEncode(arr2[loop2]) + "<br>");
   }
}

Dim loop1, loop2 As Integer
Dim arr1(), arr2() As String
Dim MyCookieColl As HttpCookieCollection 
Dim MyCookie As HttpCookie

MyCookieColl = Request.Cookies
' Capture all cookie names into a string array.
arr1 = MyCookieColl.AllKeys
' Grab individual cookie objects by cookie name     
for loop1 = 0 To arr1.GetUpperBound(0)
   MyCookie = MyCookieColl(arr1(loop1))
   Response.Write("Cookie: " & MyCookie.Name & "<br>")
           Response.Write("Secure:" & MyCookie.Secure & "<br>")

   ' Grab all values for single cookie into an object array.
   arr2 = MyCookie.Values.AllKeys
   ' Loop through cookie value collection and print all values.
   for loop2 = 0 To arr2.GetUpperBound(0)
      Response.Write("Value " & CStr(loop2) + ": " & Server.HtmlEncode(arr2(loop2)) & "<br>")
   Next loop2
Next loop1
  

Kommentarer

ASP.NET innehåller två inbyggda cookiesamlingar. Samlingen som nås via samlingen Cookies innehåller HttpRequest cookies som skickas av klienten till servern i Cookie rubriken. Samlingen som nås via samlingen Cookies innehåller HttpResponse nya cookies som skapats på servern och som överförs till klienten i Set-Cookie rubriken.

Note

När du har lagt till en cookie med hjälp HttpResponse.Cookies av samlingen är cookien omedelbart tillgänglig i HttpRequest.Cookies samlingen, även om svaret inte har skickats till klienten.

Gäller för

Se även