Windows apps
Collapse the table of content
Expand the table of content
Information
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^)

 

Gets the Cookie with a specific name from a CookieCollection.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
property Cookie^ default[
	String^ name
] {
	Cookie^ get(String^ name);
}

Parameters

name
Type: System::String^

The name of the Cookie to be found.

Property Value

Type: System.Net::Cookie^

The Cookie with a specific name from a CookieCollection.

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
Return to top
Show:
© 2017 Microsoft