BlockingCollection<T>::IEnumerable<T>::GetEnumerator Method ()

.NET Framework (current version)
 

Provides an IEnumerator<T> for items in the collection.

Namespace:   System.Collections.Concurrent
Assembly:  System (in System.dll)

private:
virtual IEnumerator<T>^ GetEnumerator() sealed = IEnumerable<T>::GetEnumerator

Return Value

Type: System.Collections.Generic::IEnumerator<T>^

An IEnumerator<T> for the items in the collection.

Exception Condition
ObjectDisposedException

The BlockingCollection<T> has been disposed.

Unlike GetConsumingEnumerable, BlockingCollection<T>::IEnumerable<T>::GetEnumerator returns a standard enumerator that does not modify the underlying collection. If other threads are adding or removing elements concurrently when GetEnumerator is called, then the elements returned by the enumerator might not represent the current state of the collection.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Return to top
Show: