Files
Umbraco-CMS/src/Umbraco.Core/Models/PublishedContent/UrlMode.cs

25 lines
700 B
C#
Raw Normal View History

2019-04-16 20:03:07 +02:00
namespace Umbraco.Core.Models.PublishedContent
2018-06-29 19:52:40 +02:00
{
/// <summary>
2019-04-16 20:03:07 +02:00
/// Specifies the type of urls that the url provider should produce, Auto is the default.
2018-06-29 19:52:40 +02:00
/// </summary>
2019-04-16 20:03:07 +02:00
public enum UrlMode
2018-06-29 19:52:40 +02:00
{
/// <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
}
}