CachedData<TCache>

Class CachedData<TCache>

Inheritance
CachedData<TCache>
Implements
ICachedData<TCache>
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class CachedData<TCache> : ICachedData<TCache>
Type Parameters
NameDescription
TCache

Properties

ItemCollections

Declaration
    public IDictionary<object, IList<TCache>> ItemCollections { get; set; }
Property Value
TypeDescription
IDictionary<object, IList<TCache>>

Items

Declaration
    public IDictionary<object, TCache> Items { get; set; }
Property Value
TypeDescription
IDictionary<object, TCache>

List

Declaration
    public IEnumerable<TCache> List { get; set; }
Property Value
TypeDescription
IEnumerable<TCache>

UsedMultipleEntriesPerKey

Declaration
    public bool UsedMultipleEntriesPerKey { get; set; }
Property Value
TypeDescription
bool

Implements