Configuration of a CacheItem.
Implements
Namespace: PostSharp.Patterns.Caching.Implementation
Assembly: PostSharp.Patterns.Caching.dll
Syntax
[Serializer(typeof(CacheItemConfiguration.Serializer))]
public sealed class CacheItemConfiguration : ICacheItemConfiguration
Constructors
Name | Description |
---|---|
CacheItemConfiguration() | |
CacheItemConfiguration(PortableFormatterConstructorContext) |
Properties
Name | Description |
---|---|
AbsoluteExpiration | Gets or sets the total duration during which the result of the cached methods is stored in cache. The absolute expiration time is counted from the moment the method is evaluated and cached. |
AutoReload | Determines whether the method calls are automatically reloaded (by re-evaluating the target method with the same arguments) when the cache item is removed from the cache. |
IgnoreThisParameter | Determines whether the |
IsEnabled | Determines whether caching is enabled. |
Priority | Gets or sets the priority of the cached methods. |
ProfileName | Gets or sets the name of the CachingProfile that contains the configuration of the cached methods. |
SlidingExpiration | Gets or sets the duration during which the result of the cached methods is stored in cache after it has been added to or accessed from the cache. The expiration is extended every time the value is accessed from the cache. |