namespace Umbraco.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 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
}
}