Interface ICacheTKeyTValue

ICache<TKey,TValue> interface

public interface ICache<TKey, TValue> : IEnumerable<KeyValuePair<TKey, TValue>>

Properties

NameDescription
Count { get; }

Methods

NameDescription
Add(TKey, TValue)
Clear()
ContainsKey(TKey)
Get(TKey)
TryGetValue(TKey, out TValue)

See Also