Class RequestHandlerSettings
Typed configuration options for request handler settings.
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Configuration.Models
Assembly: Umbraco.Core.dll
Syntax
public class RequestHandlerSettings
Properties
View SourceAddTrailingSlash
Gets or sets a value indicating whether to add a trailing slash to URLs.
Declaration
public bool AddTrailingSlash { get; set; }
Property Value
Type | Description |
---|---|
System. |
ConvertFileNamesToAscii
Gets or sets a value indicating whether to convert file names to ASCII (valid values: "true", "try" or "false").
Declaration
public string ConvertFileNamesToAscii { get; set; }
Property Value
Type | Description |
---|---|
System. |
ConvertUrlsToAscii
Gets or sets a value indicating whether to convert URLs to ASCII (valid values: "true", "try" or "false").
Declaration
public string ConvertUrlsToAscii { get; set; }
Property Value
Type | Description |
---|---|
System. |
EnableDefaultCharReplacements
Disable all default character replacements
Declaration
public bool EnableDefaultCharReplacements { get; set; }
Property Value
Type | Description |
---|---|
System. |
ShouldConvertFileNamesToAscii
Gets a value indicating whether URLs should be converted to ASCII.
Declaration
public bool ShouldConvertFileNamesToAscii { get; }
Property Value
Type | Description |
---|---|
System. |
ShouldConvertUrlsToAscii
Gets a value indicating whether URLs should be converted to ASCII.
Declaration
public bool ShouldConvertUrlsToAscii { get; }
Property Value
Type | Description |
---|---|
System. |
ShouldTryConvertFileNamesToAscii
Gets a value indicating whether URLs should be tried to be converted to ASCII.
Declaration
public bool ShouldTryConvertFileNamesToAscii { get; }
Property Value
Type | Description |
---|---|
System. |
ShouldTryConvertUrlsToAscii
Gets a value indicating whether URLs should be tried to be converted to ASCII.
Declaration
public bool ShouldTryConvertUrlsToAscii { get; }
Property Value
Type | Description |
---|---|
System. |
UserDefinedCharCollection
Add additional character replacements, or override defaults
Declaration
public IEnumerable<CharItem>? UserDefinedCharCollection { get; set; }
Property Value
Type | Description |
---|---|
System. |