Merge IPublishedContentWithKey into IPublishedContent
This commit is contained in:
@@ -10,7 +10,7 @@ using Umbraco.Web.PublishedCache.NuCache.DataSource;
|
||||
|
||||
namespace Umbraco.Web.PublishedCache.NuCache
|
||||
{
|
||||
internal class PublishedContent : PublishedContentWithKeyBase
|
||||
internal class PublishedContent : PublishedContentBase
|
||||
{
|
||||
private readonly IFacadeAccessor _facadeAccessor;
|
||||
private readonly ContentNode _contentNode;
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace Umbraco.Web.PublishedCache
|
||||
/// <summary>
|
||||
/// Exposes a member object as IPublishedContent
|
||||
/// </summary>
|
||||
public sealed class PublishedMember : PublishedContentWithKeyBase
|
||||
public sealed class PublishedMember : PublishedContentBase
|
||||
{
|
||||
private readonly IMember _member;
|
||||
private readonly IMembershipUser _membershipUser;
|
||||
|
||||
@@ -580,7 +580,7 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
|
||||
/// This is a helper class and definitely not intended for public use, it expects that all of the values required
|
||||
/// to create an IPublishedContent exist in the dictionary by specific aliases.
|
||||
/// </remarks>
|
||||
internal class DictionaryPublishedContent : PublishedContentWithKeyBase
|
||||
internal class DictionaryPublishedContent : PublishedContentBase
|
||||
{
|
||||
// note: I'm not sure this class fully complies with IPublishedContent rules especially
|
||||
// I'm not sure that _properties contains all properties including those without a value,
|
||||
|
||||
@@ -18,7 +18,7 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[XmlType(Namespace = "http://umbraco.org/webservices/")]
|
||||
internal class XmlPublishedContent : PublishedContentWithKeyBase
|
||||
internal class XmlPublishedContent : PublishedContentBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <c>XmlPublishedContent</c> class with an Xml node.
|
||||
|
||||
Reference in New Issue
Block a user