namespace Umbraco.Cms.Core.Models.PublishedContent
{
///
/// Specifies the type of URLs that the URL provider should produce, Auto is the default.
///
public enum UrlMode
{
///
/// Indicates that the URL provider should do what it has been configured to do.
///
Default = 0,
///
/// Indicates that the URL provider should produce relative URLs exclusively.
///
Relative,
///
/// Indicates that the URL provider should produce absolute URLs exclusively.
///
Absolute,
///
/// Indicates that the URL provider should determine automatically whether to return relative or absolute URLs.
///
Auto
}
}