CookieCollection.Item[] Eigenschaft

Definition

Ruft ein bestimmtes Cookie aus einem CookieCollection.

Überlädt

Name Beschreibung
Item[Int32]

Ruft den Cookie mit einem bestimmten Index aus einem CookieCollection.

Item[String]

Ruft den Cookie mit einem bestimmten Namen aus einem CookieCollection.

Item[Int32]

Ruft den Cookie mit einem bestimmten Index aus einem CookieCollection.

public:
 property System::Net::Cookie ^ default[int] { System::Net::Cookie ^ get(int index); };
public System.Net.Cookie this[int index] { get; }
member this.Item(int) : System.Net.Cookie
Default Public ReadOnly Property Item(index As Integer) As Cookie

Parameter

index
Int32

Der nullbasierte Index des Cookie zu findenden Indexes.

Eigenschaftswert

A Cookie mit einem bestimmten Index aus einem CookieCollection.

Ausnahmen

index ist kleiner als 0 oder index größer als oder gleich Count.

Beispiele

  // Get the cookies in the 'CookieCollection' object using the 'Item' property.
  // The 'Item' property in C# is implemented through Indexers.
// The class that implements indexers is usually a collection of other objects.
// This class provides access to those objects with the '<class-instance>[i]' syntax.
  try {
      if(cookies.Count == 0) {
          Console.WriteLine("No cookies to display");
          return;
      }
      for(int j = 0; j < cookies.Count; j++)
          Console.WriteLine("{0}", cookies[j].ToString());
      Console.WriteLine("");
  }
  catch(Exception e) {
      Console.WriteLine("Exception raised.\nError : " + e.Message);
  }
 'Get the cookies in the 'CookieCollection' object using the 'Item' property.
 Try
    If cookies.Count = 0 Then
        Console.WriteLine("No cookies to display")
        Return
    End If
    Dim j As Integer
    For j = 0 To cookies.Count - 1
        Console.WriteLine("{0}", cookies(j).ToString())
    Next j
    Console.WriteLine("")
Catch e As Exception
    Console.WriteLine(("Exception raised." + ControlChars.Cr + "Error : " + e.Message))
End Try

Hinweise

Sie können dies verwenden, um den Inhalt einer CookieCollection.

Weitere Informationen

Gilt für:

Item[String]

Ruft den Cookie mit einem bestimmten Namen aus einem CookieCollection.

public:
 property System::Net::Cookie ^ default[System::String ^] { System::Net::Cookie ^ get(System::String ^ name); };
public System.Net.Cookie this[string name] { get; }
member this.Item(string) : System.Net.Cookie
Default Public ReadOnly Property Item(name As String) As Cookie

Parameter

name
String

Der Name des Cookie zu findenden Inhalts.

Eigenschaftswert

Der Cookie mit einem bestimmten Namen aus einem CookieCollection.

Ausnahmen

name ist null.

Beispiele

// Get the cookies in the 'CookieCollection' object using the 'Item' property.
// The 'Item' property in C# is implemented through Indexers.
// The class that implements indexers is usually a collection of other objects.
// This class provides access to those objects with the '<class-instance>[i]' syntax.
try {
    if(cookies.Count == 0) {
        Console.WriteLine("No cookies to display");
        return;
    }
    Console.WriteLine("{0}", cookies["UserName"].ToString());
    Console.WriteLine("{0}", cookies["DateOfBirth"].ToString());
    Console.WriteLine("{0}", cookies["PlaceOfBirth"].ToString());
    Console.WriteLine("");
}
catch(Exception e) {
    Console.WriteLine("Exception raised.\nError : " + e.Message);
}
' Get the cookies in the 'CookieCollection' object using the 'Item' property.


Try
    If cookies.Count = 0 Then
        Console.WriteLine("No cookies to display")
        Return
    End If
    Console.WriteLine("{0}", cookies("UserName").ToString())
    Console.WriteLine("{0}", cookies("DateOfBirth").ToString())
    Console.WriteLine("{0}", cookies("PlaceOfBirth").ToString())
    Console.WriteLine("")
Catch e As Exception
    Console.WriteLine(("Exception raised." + ControlChars.Cr + "Error : " + e.Message))
End Try

Hinweise

Sie können dies verwenden, um den Inhalt einer CookieCollection.

Weitere Informationen

Gilt für: