Table of Contents

Class ShadeService

Namespace
Dynamicweb.Content.Items
Assembly
Dynamicweb.dll
public class ShadeService : ICacheStorage<int, IDictionary<string, string>>, ICacheStorage<int>, ICacheStorage
Inheritance
ShadeService
Implements
Inherited Members

Methods

ClearCache()

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

public void ClearCache()

ClearCache(IEnumerable<int>)

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

public void ClearCache(IEnumerable<int> keys)

Parameters

keys IEnumerable<int>

Keys to reset

ClearCache(int)

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

public void ClearCache(int key)

Parameters

key int

Key to reset

GetCache(IEnumerable<int>)

public IEnumerable<IDictionary<string, string>> GetCache(IEnumerable<int> keys)

Parameters

keys IEnumerable<int>

Returns

IEnumerable<IDictionary<string, string>>

GetCache(int)

public IDictionary<string, string> GetCache(int key)

Parameters

key int

Returns

IDictionary<string, string>
To top