Files
Umbraco-CMS/src/Umbraco.Core/Configuration/UmbracoSettings/IRequestHandlerSettings.cs
T
2020-03-12 12:46:08 +01:00

16 lines
361 B
C#

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