Custom attribute that, when applied on a type, configures the CacheAttribute aspects applied to the methods of this type or its derived types. When applied to an assembly, the CacheConfigurationAttribute custom attribute configures all methods of the current assembly.
Namespace: PostSharp.Patterns.Caching
Assembly: PostSharp.Patterns.Caching.dll
Syntax
[AttributeUsage(AttributeTargets.Assembly|AttributeTargets.Class)]
public sealed class CacheConfigurationAttribute : Attribute
Remarks
Any CacheConfigurationAttribute on the base class has always priority over a CacheConfigurationAttribute on the assembly, even if the base class is in a different assembly.
Constructors
Name | Description |
---|---|
CacheConfigurationAttribute() |
Properties
Name | Description |
---|---|
AbsoluteExpiration | Gets or sets the total duration, in minutes, during which the result of the cached method 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 |
Priority | Gets or sets the priority of the cached method. |
ProfileName | Gets or sets the name of the CachingProfile that contains the configuration of the cached methods. |
SlidingExpiration | Gets or sets the duration, in minutes, during which the result of the cached method 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. |