17 lines
413 B
C#
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; }
|
|
}
|
|
} |