DotNetNuke 5.2
CacheLevel is used to specify the cachability of a string, determined as minimum of the used token cachability

Namespace:  DotNetNuke.Services.Tokens
Assembly:  DotNetNuke (in DotNetNuke.dll) Version: 5.2.0.275

Syntax

C#
public enum CacheLevel
Visual Basic (Declaration)
Public Enumeration CacheLevel
Visual C++
public enum class CacheLevel

Members

Member nameDescription
notCacheable
Caching of the text is not suitable and might expose security risks
secureforCaching
Caching of the text might result in inaccurate display (e.g. time), but does not expose a security risk
fullyCacheable
Caching of the text can be done without limitations or any risk

Remarks

CacheLevel is determined as minimum of the used tokens' cachability

See Also