C# Class Abp.Runtime.Caching.Memory.AbpMemoryCache

Implements ICache to work with MemoryCache.
Inheritance: CacheBase
Afficher le fichier Open project: carldai0106/ABP

Méthodes publiques

Méthode Description
AbpMemoryCache ( string name ) : System

Constructor.

Clear ( ) : void
Dispose ( ) : void
GetOrDefault ( string key ) : object
Remove ( string key ) : void
Set ( string key, object value, System.TimeSpan slidingExpireTime = null ) : void

Method Details

AbpMemoryCache() public méthode

Constructor.
public AbpMemoryCache ( string name ) : System
name string Unique name of the cache
Résultat System

Clear() public méthode

public Clear ( ) : void
Résultat void

Dispose() public méthode

public Dispose ( ) : void
Résultat void

GetOrDefault() public méthode

public GetOrDefault ( string key ) : object
key string
Résultat object

Remove() public méthode

public Remove ( string key ) : void
key string
Résultat void

Set() public méthode

public Set ( string key, object value, System.TimeSpan slidingExpireTime = null ) : void
key string
value object
slidingExpireTime System.TimeSpan
Résultat void