Click or drag to resize

ConverterCollectionsGetCollection Method

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

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static ConverterCollectionsConverterCollection GetCollection(
	ICollection col,
	IConverter convUp,
	IConverter convDown
)

Parameters

col
Type: System.CollectionsICollection
The underlying ICollection.
convUp
Type: Tangosol.UtilIConverter
The IConverter to view the underlying collection through.
convDown
Type: Tangosol.UtilIConverter
The IConverter to pass items down to the underlying collection through.

Return Value

Type: ConverterCollectionsConverterCollection
An ICollection that views the passed collection through the specified IConverter.
See Also