Table of Contents

Class CachedEntry

Namespace
Acuit.Pinpoint.ResourceManagement
Assembly
Acuit.Pinpoint.ResourceManagement.Abstractions.dll

An entry retrieved from the local cache.

public class CachedEntry
Inheritance
CachedEntry
Inherited Members

Constructors

CachedEntry(object, DateTimeOffset)

Initializes a new instance of the CachedEntry class.

public CachedEntry(object value, DateTimeOffset timestamp)

Parameters

value object

The cache entry value.

timestamp DateTimeOffset

The timestamp when the value was cached.

Properties

Timestamp

Gets the timestamp when the value was cached.

public DateTimeOffset Timestamp { get; }

Property Value

DateTimeOffset

Value

Gets the cache entry value.

public object Value { get; }

Property Value

object