CookieCollection.GetEnumerator Method
Gets an enumerator that can iterate through a CookieCollection.
Namespace: System.Net
Assembly: System (in System.dll)
Return Value
Type: System.Collections.IEnumeratorAn instance of an implementation of an IEnumerator interface that can iterate through a CookieCollection.
Implements
IEnumerable.GetEnumeratorYou should use an IEnumerator only to read data in the collection. Enumerators cannot be used to modify the underlying collection. The enumerator does not have exclusive access to the collection.
When an enumerator is created, it takes a snapshot of the current state of the collection. If changes are made to the collection, such as adding, modifying, or deleting elements, this snapshot gets out of sync and the enumerator throws an InvalidOperationException. Two enumerators created from the same collection at the same time can produce different snapshots of the collection.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.