Implements a class where every node in a linked list can be found by key (hashtable), but every node is also ordered in a linked list. This way, a node may be "bumped" to the head/tail of the linked list by key in near O(1) complexity.

Namespace:  EPiServer.Community.OnlineStatus
Assembly:  EPiServer.Community.OnlineStatus (in EPiServer.Community.OnlineStatus.dll) Version: 4.0.517.255

Syntax

C#
[SerializableAttribute]
public class DoubleLinkedHashtable : Hashtable

Inheritance Hierarchy

System..::.Object
  System.Collections..::.Hashtable
    EPiServer.Community.OnlineStatus..::.DoubleLinkedHashtable

See Also