Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Class CacheItemWrapper

Wrapper for items stored in the weak reference cache.

Inheritance
System.Object
CacheItemWrapper
Namespace: EPiServer.Framework.Cache.Internal
Assembly: EPiServer.Framework.dll
Version: 12.0.3
Syntax
public class CacheItemWrapper : Object

Constructors

CacheItemWrapper(Object, CacheEvictionPolicy, DateTime)

Initializes a new instance of the CacheItemWrapper class.

Declaration
public CacheItemWrapper(object value, CacheEvictionPolicy eviction, DateTime now)
Parameters
Type Name Description
System.Object value

The value.

CacheEvictionPolicy eviction

The eviction policy.

System.DateTime now

The current time/date stamp.

Methods

ReturnIfValid(DateTime)

Returns the object if it is valid (considering expiration and liveness of the weak reference).

Declaration
public object ReturnIfValid(DateTime now)
Parameters
Type Name Description
System.DateTime now

The current time/date stamp.

Returns
Type Description
System.Object

The object if it is valid, otherwise null.

Extension Methods