Files
Umbraco-CMS/src/Umbraco.Core/Models/PublishedContent/ILivePublishedModelFactory.cs

19 lines
499 B
C#
Raw Normal View History

2019-02-21 19:06:41 +01:00
namespace Umbraco.Core.Models.PublishedContent
{
/// <summary>
/// Provides a live published model creation service.
/// </summary>
public interface ILivePublishedModelFactory : IPublishedModelFactory
{
/// <summary>
/// Gets an object that can be used to synchronize access to the factory.
/// </summary>
object SyncRoot { get; }
/// <summary>
/// Refreshes the factory.
/// </summary>
void Refresh();
}
}