Table of Contents

Interface ICacheStore

Namespace
The.Caching.Storage
Assembly
Instagile.dll

Persists one CacheFile per application: appName includes the environment name outside production, so environments keep separate caches.

public interface ICacheStore

Methods

Clear(string)

void Clear(string appName)

Parameters

appName string

Get(string)

CacheFile Get(string appName)

Parameters

appName string

Returns

CacheFile

Set(string, CacheFile)

void Set(string appName, CacheFile file)

Parameters

appName string
file CacheFile