View Source
Class ContentCacheDataModel
The content model stored in the content cache database table serialized as JSON
Inheritance
System.Object
Assembly: Umbraco.PublishedCache.HybridCache.dll
Syntax
[DataContract]
public sealed 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
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 |
|