2020-09-25 00:32:11 +10:00
|
|
|
|
using Umbraco.Core.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.PropertyEditors
|
2020-08-26 15:57:13 +10:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2021-01-28 13:50:18 +11:00
|
|
|
|
/// Determines if a property type's value should be compressed in memory
|
2020-08-26 15:57:13 +10:00
|
|
|
|
/// </summary>
|
2021-01-28 13:50:18 +11:00
|
|
|
|
/// <remarks>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </remarks>
|
|
|
|
|
|
public interface IPropertyCacheCompression
|
2020-09-25 00:32:11 +10:00
|
|
|
|
{
|
2021-01-28 13:50:18 +11:00
|
|
|
|
bool IsCompressed(IReadOnlyContentBase content, string propertyTypeAlias);
|
2020-08-26 15:57:13 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|