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 (Int32)

 

Gets the Cookie with a specific index from a CookieCollection.

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

public:
property Cookie^ default[
	int index
] {
	Cookie^ get(int index);
}

Parameters

index
Type: System::Int32

The zero-based index of the Cookie to be found.

Property Value

Type: System.Net::Cookie^

A Cookie with a specific index from a CookieCollection.

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