Provides the abstract base class for a read only collection whose keys are embedded in the values.

Namespace:  Endeca.Data.Content.Collections
Assembly:  Endeca.Data.Content (in Endeca.Data.Content.dll) Version: 2.1.2.0 (2.1.2.0)

Syntax

C#
[SerializableAttribute]
[ComVisibleAttribute(false)]
public abstract class ReadOnlyKeyedCollection<TKey, TItem> : ReadOnlyCollection<TItem>
Visual Basic (Declaration)
<SerializableAttribute> _
<ComVisibleAttribute(False)> _
Public MustInherit Class ReadOnlyKeyedCollection(Of TKey, TItem) _
	Inherits ReadOnlyCollection(Of TItem)
Visual C++
[SerializableAttribute]
[ComVisibleAttribute(false)]
generic<typename TKey, typename TItem>
public ref class ReadOnlyKeyedCollection abstract : public ReadOnlyCollection<TItem>

Type Parameters

TKey
The type of keys in the collection.
TItem
The type of items in the collection.

Inheritance Hierarchy

System..::.Object
  System.Collections.ObjectModel..::.ReadOnlyCollection<(Of <(TItem>)>)
    Endeca.Data.Content.Collections..::.ReadOnlyKeyedCollection<(Of <(TKey, TItem>)>)
      Endeca.Data.Content.Collections..::.PropertyCollection

See Also