The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
CookieCollection::Item Property (Int32)
.NET Framework (current version)
Gets the Cookie with a specific index from a CookieCollection.
Assembly: System (in System.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index of the Cookie to be found.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than 0 or index is greater than or equal to Count. |
You can use this to iterate over the contents of a CookieCollection.
// 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 ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: