Table of Contents

Interface ICacheStorage<TKey>

Namespace
Dynamicweb.Caching
Assembly
Dynamicweb.Core.dll

Defines a storage that uses an object cache

public interface ICacheStorage<TKey> : ICacheStorage where TKey : IEquatable<TKey>

Type Parameters

TKey

CacheKey unique accross cacheobjects in the storage

Inherited Members

Methods

ClearCache(IEnumerable<TKey>)

Resets the specified keys to the default value for objects stored in the object cache

void ClearCache(IEnumerable<TKey> keys)

Parameters

keys IEnumerable<TKey>

Keys to reset

ClearCache(TKey)

Resets the specified key to the default value for objects stored in the object cache

void ClearCache(TKey key)

Parameters

key TKey

Key to reset

To top