Table of Contents

Class CacheItem

Namespace
FoundationaLLM.Common.Models.Cache
Assembly
FoundationaLLM.Common.dll

The cached object.

public class CacheItem
Inheritance
CacheItem
Inherited Members
Extension Methods

Properties

ExpirationTimeUtc

The UTC expiration time of the object being cached.

public DateTime? ExpirationTimeUtc { get; set; }

Property Value

DateTime?

IsExpired

Indicates whether the cached object expired or not.

public bool IsExpired { get; }

Property Value

bool

Value

The value of the object being cached.

public required object? Value { get; set; }

Property Value

object