2016-05-26 17:12:04 +02:00
|
|
|
|
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; }
|
2016-05-26 17:12:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|