C# Class Spring.Globalization.NullResourceCache

Resource cache implementation that doesn't cache resources.
Inheritance: AbstractResourceCache
显示文件 Open project: spring-projects/spring-net

Protected Methods

Method Description
GetResources ( string cacheKey ) : IList

Gets the list of resources from cache.

PutResources ( string cacheKey, IList resources ) : void

Puts the list of resources in the cache.

Method Details

GetResources() protected method

Gets the list of resources from cache.
protected GetResources ( string cacheKey ) : IList
cacheKey string Cache key to use for lookup.
return IList

PutResources() protected method

Puts the list of resources in the cache.
protected PutResources ( string cacheKey, IList resources ) : void
cacheKey string Cache key to use for the specified resources.
resources IList A list of resources to cache.
return void