Table of Contents

Class LruListItem<TKey, TValue>

Namespace
Amazon.Runtime.Internal.Util
Assembly
AWSSDK.Core.dll

Item to be stored in the LruList linked list structure.

public class LruListItem<TKey, TValue>

Type Parameters

TKey
TValue
Inheritance
LruListItem<TKey, TValue>
Inherited Members

Constructors

LruListItem(TKey, TValue)

public LruListItem(TKey key, TValue value)

Parameters

key TKey
value TValue

Properties

Key

public TKey Key { get; }

Property Value

TKey

Next

public LruListItem<TKey, TValue> Next { get; set; }

Property Value

LruListItem<TKey, TValue>

Previous

public LruListItem<TKey, TValue> Previous { get; set; }

Property Value

LruListItem<TKey, TValue>

Value

public TValue Value { get; set; }

Property Value

TValue