Cleanup IPublishedCache.GetByContentType

This commit is contained in:
Stephan
2019-02-14 08:54:00 +01:00
parent 01b82ee4e8
commit fe9b964ffe
6 changed files with 16 additions and 23 deletions

View File

@@ -208,7 +208,12 @@ namespace Umbraco.Web.PublishedCache
/// <returns>The content type, or null.</returns>
/// <remarks>The alias is case-insensitive.</remarks>
PublishedContentType GetContentType(string alias);
/// <summary>
/// Gets contents of a given content type.
/// </summary>
/// <param name="contentType">The content type.</param>
/// <returns>The contents.</returns>
IEnumerable<IPublishedContent> GetByContentType(PublishedContentType contentType);
}
}