Files
Umbraco-CMS/src/Umbraco.Core/Configuration/UmbracoSettings/IWebRoutingSection.cs
T
2016-08-03 17:57:41 +02:00

20 lines
505 B
C#

namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface IWebRoutingSection : IUmbracoConfigurationSection
{
bool TrySkipIisCustomErrors { get; }
bool InternalRedirectPreservesTemplate { get; }
bool DisableAlternativeTemplates { get; }
bool DisableFindContentByIdPath { get; }
bool DisableRedirectUrlTracking { get; }
string UrlProviderMode { get; }
string UmbracoApplicationUrl { get; }
}
}