Files
Umbraco-CMS/src/Umbraco.Core/Models/PublishedContent/UrlMode.cs
2019-04-23 08:27:49 +02:00

25 lines
700 B
C#

namespace Umbraco.Core.Models.PublishedContent
{
/// <summary>
/// Specifies the type of urls that the url provider should produce, Auto is the default.
/// </summary>
public enum UrlMode
{
/// <summary>
/// Indicates that the url provider should produce relative urls exclusively.
/// </summary>
Relative,
/// <summary>
/// Indicates that the url provider should produce absolute urls exclusively.
/// </summary>
Absolute,
/// <summary>
/// Indicates that the url provider should determine automatically whether to return relative or absolute urls.
/// </summary>
Auto
}
}