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)

Syntax

C#
public enum CacheLevel
Visual Basic
Public Enumeration CacheLevel

Members

Member nameValueDescription
notCacheable0 Caching of the text is not suitable and might expose security risks
secureforCaching5 Caching of the text might result in inaccurate display (e.g. time), but does not expose a security risk
fullyCacheable10 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