Click or drag to resize

ConverterCollectionsGetDictionaryEnumerator Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
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.14 (14.1.1.14)
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