Click or drag to resize

ConverterCollectionsGetDictionary Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Returns a Converter instance of IDictionary.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static ConverterCollectionsConverterDictionary GetDictionary(
	IDictionary dict,
	IConverter convKeyUp,
	IConverter convKeyDown,
	IConverter convValUp,
	IConverter convValDown
)

Parameters

dict
Type: System.CollectionsIDictionary
The underlying IDictionary.
convKeyUp
Type: Tangosol.UtilIConverter
The IConverter to view the underlying dictionary's keys through.
convKeyDown
Type: Tangosol.UtilIConverter
The IConverter to use to pass keys down to the underlying dictionary.
convValUp
Type: Tangosol.UtilIConverter
The IConverter to view the underlying dictionary's values through.
convValDown
Type: Tangosol.UtilIConverter
The IConverter to use to pass values down to the underlying dictionary.

Return Value

Type: ConverterCollectionsConverterDictionary
An IDictionary that views the keys and values of the passed dictionary through the specified IConverters.
See Also