CookieCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Cookie에서 특정 CookieCollection를 가져옵니다.
오버로드
Item[Int32] |
Cookie에서 특정 인덱스를 가진 CookieCollection를 가져옵니다. |
Item[String] |
Cookie에서 특정 이름을 가진 CookieCollection를 가져옵니다. |
Item[Int32]
- Source:
- CookieCollection.cs
- Source:
- CookieCollection.cs
- Source:
- CookieCollection.cs
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]
- Source:
- CookieCollection.cs
- Source:
- CookieCollection.cs
- Source:
- CookieCollection.cs
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내용을 반복할 수 있습니다.
추가 정보
적용 대상
.NET