Files
Umbraco-CMS/src/Umbraco.Web/PublishedCache/IDomainCache.cs

13 lines
329 B
C#
Raw Normal View History

using System.Collections.Generic;
using Umbraco.Web.Routing;
namespace Umbraco.Web.PublishedCache
{
public interface IDomainCache
{
IEnumerable<Domain> GetAll(bool includeWildcards);
IEnumerable<Domain> GetAssigned(int contentId, bool includeWildcards);
2018-04-26 16:03:08 +02:00
string DefaultCulture { get; }
}
}