17 lines
478 B
C#
17 lines
478 B
C#
namespace Umbraco.Web.PublishedCache
|
|
{
|
|
/// <summary>
|
|
/// Gives access to the default culture.
|
|
/// </summary>
|
|
public interface IDefaultCultureAccessor
|
|
{
|
|
/// <summary>
|
|
/// Gets the system default culture.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>Implementations must NOT return a null value. Return an empty string for the invariant culture.</para>
|
|
/// </remarks>
|
|
string DefaultCulture { get; }
|
|
}
|
|
}
|