14 lines
350 B
C#
14 lines
350 B
C#
namespace Umbraco.Core.Configuration.UmbracoSettings
|
|
{
|
|
public interface IWebRoutingSection : IUmbracoConfigurationSection
|
|
{
|
|
bool TrySkipIisCustomErrors { get; }
|
|
|
|
bool InternalRedirectPreservesTemplate { get; }
|
|
|
|
bool DisableAlternativeTemplates { get; }
|
|
|
|
string UrlProviderMode { get; }
|
|
}
|
|
|
|
} |