Table of Contents

Class CacheInformation

Namespace
Dynamicweb.Caching
Assembly
Dynamicweb.Core.dll

Information about a cache

public class CacheInformation
Inheritance
CacheInformation
Inherited Members

Constructors

CacheInformation()

Constructor for cache information.

public CacheInformation()

Properties

CacheType

Name of cache type

public required string CacheType { get; set; }

Property Value

string

Count

Gets the number of cached items

public int Count { get; }

Property Value

int

CountLambda

public Func<int> CountLambda { get; set; }

Property Value

Func<int>

Description

Description of the cache

public string Description { get; }

Property Value

string

DescriptionLambda

public Func<string> DescriptionLambda { get; set; }

Property Value

Func<string>

Information

Information about what the cache contains

public string Information { get; }

Property Value

string

InformationLambda

public Func<string> InformationLambda { get; set; }

Property Value

Func<string>

LastChanged

Timestamp for when cache was last changed.

public DateTime LastChanged { get; set; }

Property Value

DateTime

LastCleared

Timestamp for when a key was last removed from cache

public DateTime LastCleared { get; set; }

Property Value

DateTime

Owner

Name of owner

public required Type Owner { get; set; }

Property Value

Type
To top