Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Returns an instance of IDictionaryEnumerator that uses an IConverters to view an underlying enumerator.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
protected virtual IDictionaryEnumerator InstantiateDictionaryEnumerator(
	IDictionaryEnumerator enumerator,
	IConverter convKey,
	IConverter convVal
)

Parameters

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

Return Value

An IDictionaryEnumerator that views the passed enumerator through the specified IConverters.

See Also