Table of Contents

Class CacheInformation

Namespace
Dynamicweb.Caching
Assembly
Dynamicweb.Caching.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 string CacheType { get; }

Property Value

string

Count

Gets the number of cached items
public int Count { get; }

Property Value

int

Description

Description of the cache
public string Description { get; }

Property Value

string

Information

Information about what the cache contains
public string Information { get; }

Property Value

string

LastChanged

Timestamp for when cache was last changed.
public DateTime LastChanged { get; }

Property Value

DateTime

LastCleared

Timestamp for when a key was last removed from cache
public DateTime LastCleared { get; }

Property Value

DateTime

Owner

Name of owner
public Type Owner { get; }

Property Value

Type
To top