Search Results for

    Show / Hide Table of Contents
    View Source

    Class ContentCacheDataModel

    The content model stored in the content cache database table serialized as JSON

    Inheritance
    System.Object
    Namespace: Umbraco.Cms.Infrastructure.PublishedCache.DataSource
    Assembly: Umbraco.PublishedCache.NuCache.dll
    Syntax
    [DataContract]
    public class ContentCacheDataModel

    Properties

    View Source

    CultureData

    Declaration
    [DataMember(Order = 1)]
    [JsonPropertyName("cd")]
    [JsonConverter(typeof(JsonDictionaryStringInternIgnoreCaseConverter<CultureVariation>))]
    public Dictionary<string, CultureVariation>? CultureData { get; set; }
    Property Value
    Type Description
    System.Nullable<Dictionary<System.String, CultureVariation>>
    View Source

    PropertyData

    Declaration
    [DataMember(Order = 0)]
    [JsonPropertyName("pd")]
    [JsonConverter(typeof(JsonDictionaryStringInternIgnoreCaseConverter<PropertyData[]>))]
    public Dictionary<string, PropertyData[]>? PropertyData { get; set; }
    Property Value
    Type Description
    System.Nullable<Dictionary<System.String, PropertyData[]>>
    View Source

    UrlSegment

    Declaration
    [DataMember(Order = 2)]
    [JsonPropertyName("us")]
    public string UrlSegment { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • CultureData
      • PropertyData
      • UrlSegment
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX