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
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|