Files
Umbraco-CMS/src/Umbraco.Core/Configuration/UmbracoSettings/IRequestHandlerSection.cs
2014-01-16 19:40:29 +01:00

17 lines
413 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Configuration.UmbracoSettings
{
public interface IRequestHandlerSection : IUmbracoConfigurationSection
{
bool UseDomainPrefixes { get; }
bool AddTrailingSlash { get; }
bool RemoveDoubleDashes { get; }
bool ConvertUrlsToAscii { get; }
IEnumerable<IChar> CharCollection { get; }
}
}