Table of Contents

Class CachedSection<TData>

Namespace
CMS.Helpers
Assembly
CMS.Helpers.dll

Cached section context handler.

[Obsolete("Class was not intended for public use and will be removed. Use interface IProgressiveCache instead.")]
[ObsoleteSince(29, 3)]
public class CachedSection<TData> : CachedSection

Type Parameters

TData
Inheritance
object
CachedSection<TData>
Inherited Members
Extension Methods

Constructors

CachedSection(ref TData, CacheSettings)

Creates new instance of CachedSection.

public CachedSection(ref TData result, CacheSettings settings)

Parameters

result TData

Returns the result of the cached data if available

settings CacheSettings

Cache settings

CachedSection(ref TData, double, bool, string, params object[])

Creates new instance of CachedSection with absolute expiration.

public CachedSection(ref TData result, double cacheMinutes, bool condition, string customCacheItemName, params object[] cacheItemNameParts)

Parameters

result TData

Returns the result of the cached data if available

cacheMinutes double

Defines how long this item will stay in cache (in minutes)

condition bool

Cache condition

customCacheItemName string

Custom cache item name

cacheItemNameParts object[]

Cache item name parts

Fields

mData

Data to be cached / retrieved

protected TData mData

Field Value

TData

Properties

Data

Data to be cached / retrieved

public TData Data { get; set; }

Property Value

TData

Methods

Dispose()

Disposes the object.

public override void Dispose()

GetData()

Attempts to get the data from cache.

public TData GetData()

Returns

TData