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 (String^)
.NET Framework (current version)
Gets the Cookie with a specific name from a CookieCollection.
Assembly: System (in System.dll)
Parameters
- name
-
Type:
System::String^
The name of the Cookie to be found.
| Exception | Condition |
|---|---|
| ArgumentNullException | name is null. |
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; } 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 ); }
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: