Enum PropertyCacheLevel
Specifies the level of cache for a property value.
Namespace: Umbraco.Cms.Core.PropertyEditors
Assembly: Umbraco.Core.dll
Syntax
public enum PropertyCacheLevel : int
  Fields
| Name | Description | 
|---|---|
| Element | Indicates that the property value can be cached at the element level, i.e. it can be cached until the element itself is modified.  | 
      
| Elements | Indicates that the property value can be cached at the elements level, i.e. it can be cached until any element is modified.  | 
      
| None | Indicates that the property value cannot be cached and has to be converted each time it is requested.  | 
      
| Snapshot | Indicates that the property value can be cached at the snapshot level, i.e. it can be cached for the duration of the current snapshot.  | 
      
| Unknown | Default value.  |