C# 클래스 Spring.Globalization.AspNetResourceCache

Resource cache implementation that uses ASP.NET Cache to cache resources.
상속: AbstractResourceCache
파일 보기 프로젝트 열기: spring-projects/spring-net

보호된 메소드들

메소드 설명
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.

메소드 상세

GetResources() 보호된 메소드

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

PutResources() 보호된 메소드

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.
리턴 void