Table of Contents

Class CacheResult<TKey, TCachedObject>

Namespace
Dynamicweb.Caching
Assembly
Dynamicweb.Core.dll

Contains the objects found as well as the keys that could not be located

public class CacheResult<TKey, TCachedObject> where TKey : IEquatable<TKey>

Type Parameters

TKey

Unique key for cached object

TCachedObject

Cached object

Inheritance
CacheResult<TKey, TCachedObject>
Inherited Members

Properties

Found

Cached objects found

public IEnumerable<TCachedObject> Found { get; set; }

Property Value

IEnumerable<TCachedObject>

Missing

Keys that could not locate a cached object

public IEnumerable<TKey> Missing { get; set; }

Property Value

IEnumerable<TKey>
To top