CookieCollection.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Cookie から特定の CookieCollection を取得します。
オーバーロード
Item[Int32] |
Cookie から特定のインデックスを持つ CookieCollection を取得します。 |
Item[String] |
Cookie から特定の名前の CookieCollection を取得します。 |
Item[Int32]
Cookie から特定のインデックスを持つ 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
パラメーター
プロパティ値
Cookie の特定のインデックスを持つ CookieCollection。
例外
index
が 0 未満か、index
が Count 以上です。
例
// 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 ] );
Console::WriteLine( "" );
}
catch ( Exception^ e )
{
Console::WriteLine( "Exception raised.\nError : {0}", e->Message );
}
// 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
注釈
これを使用して、 の CookieCollection内容を反復処理できます。
こちらもご覧ください
適用対象
Item[String]
Cookie から特定の名前の CookieCollection を取得します。
public:
property System::Net::Cookie ^ default[System::String ^] { System::Net::Cookie ^ get(System::String ^ name); };
public System.Net.Cookie this[string name] { get; }
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
パラメーター
プロパティ値
Cookie の特定の名前の CookieCollection。
例外
name
は null
です。
例
// 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" ] );
Console::WriteLine( "{0}", cookies[ "DateOfBirth" ] );
Console::WriteLine( "{0}", cookies[ "PlaceOfBirth" ] );
Console::WriteLine( "" );
}
catch ( Exception^ e )
{
Console::WriteLine( "Exception raised.\nError : {0}", e->Message );
}
// 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
注釈
これを使用して、 の CookieCollection内容を反復処理できます。
こちらもご覧ください
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET