using System.Collections.Generic;
using Umbraco.Web.Routing;
namespace Umbraco.Web.PublishedCache
{
public interface IDomainCache
{
///
/// Returns all in the current domain cache including any domains that may be referenced by content items that are no longer published
///
///
///
IEnumerable GetAll(bool includeWildcards);
///
/// Returns all assigned for the content id specified even if the content item is not published
///
///
///
///
IEnumerable GetAssigned(int contentId, bool includeWildcards);
string DefaultCulture { get; }
}
}