Files
Umbraco-CMS/src/Umbraco.Core/PublishedCache/IPublishedSnapshotAccessor.cs
Elitsa Marinovska e9b697b0c2 Cleanup
2021-08-17 13:10:13 +02:00

11 lines
373 B
C#

namespace Umbraco.Cms.Core.PublishedCache
{
/// <summary>
/// Provides access to a TryGetPublishedSnapshot bool method that will return true if the "current" <see cref="IPublishedSnapshot"/> is not null.
/// </summary>
public interface IPublishedSnapshotAccessor
{
bool TryGetPublishedSnapshot(out IPublishedSnapshot publishedSnapshot);
}
}