Click or drag to resize

ConverterCollectionsGetDictionaryEnumerator Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Returns an instance of IDictionaryEnumerator that uses IConverters to view an underlying enumerator.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static IDictionaryEnumerator GetDictionaryEnumerator(
	IDictionaryEnumerator enumerator,
	IConverter convKey,
	IConverter convVal
)

Parameters

enumerator
Type: System.CollectionsIDictionaryEnumerator
The underlying IDictionaryEnumerator.
convKey
Type: Tangosol.UtilIConverter
The IConverter to view the underlying IDictionaryEnumerator keys through.
convVal
Type: Tangosol.UtilIConverter
The IConverter to view the underlying IDictionaryEnumerator values through.

Return Value

Type: IDictionaryEnumerator
An IDictionaryEnumerator that views the passed enumerator through the specified IConverters.
See Also