ObjectCache.IEnumerable(Of KeyValuePair(Of String, Object)).GetEnumerator Method ()

 

Supports iteration over a strongly typed collection.

Namespace:   System.Runtime.Caching
Assembly:  System.Runtime.Caching (in System.Runtime.Caching.dll)

Private Function GetEnumerator As IEnumerator(Of KeyValuePair(Of String, Object))
	Implements IEnumerable(Of KeyValuePair(Of String, Object)).GetEnumerator

Return Value

Type: System.Collections.Generic.IEnumerator(Of KeyValuePair(Of String, Object))

The enumerator object that provides access to the cache entries in the cache.

This member is an explicit interface member implementation. It can be used only when a derived ObjectCache instance is cast to an IEnumerable interface.

Developers can use this method to iterate through a strongly typed collection of cache entries.

This method is the default GetEnumerator implementation that internally calls the GetEnumerator method.

.NET Framework
Available since 4.0
Return to top
Show: