Obsolete Url on IPublishedContent

This commit is contained in:
Steve Temple
2020-01-31 13:08:32 +00:00
parent 537674a0b3
commit a8672790d3
6 changed files with 6 additions and 2 deletions
@@ -97,6 +97,7 @@ namespace Umbraco.Core.Models.PublishedContent
/// <para>The value of this property is contextual. It depends on the 'current' request uri,
/// if any.</para>
/// </remarks>
[Obsolete("Use the Url() extension instead")]
string Url { get; }
/// <summary>
@@ -94,6 +94,7 @@ namespace Umbraco.Core.Models.PublishedContent
public virtual DateTime UpdateDate => _content.UpdateDate;
/// <inheritdoc />
[Obsolete("Use the Url() extension instead")]
public virtual string Url => _content.Url;
/// <inheritdoc />
@@ -199,6 +199,7 @@ namespace Umbraco.Tests.PublishedContent
public DateTime UpdateDate { get; set; }
public Guid Version { get; set; }
public int Level { get; set; }
[Obsolete("Use the Url() extension instead")]
public string Url { get; set; }
public PublishedItemType ItemType => PublishedItemType.Content;
@@ -46,7 +46,7 @@ namespace Umbraco.Web.Controllers
// if it's not a local url we'll redirect to the root of the current site
return Redirect(Url.IsLocalUrl(model.RedirectUrl)
? model.RedirectUrl
: CurrentPage.AncestorOrSelf(1).Url);
: CurrentPage.AncestorOrSelf(1).Url());
}
//redirect to current page by default
@@ -69,6 +69,7 @@ namespace Umbraco.Web.Models
public abstract DateTime UpdateDate { get; }
/// <inheritdoc />
[Obsolete("Use the Url() extension instead")]
public virtual string Url => this.Url();
/// <inheritdoc />
@@ -101,7 +101,7 @@ namespace Umbraco.Web.PropertyEditors
if (mediaTyped == null)
throw new PanicException($"Could not find media by id {udi.Guid} or there was no UmbracoContext available.");
var location = mediaTyped.Url;
var location = mediaTyped.Url();
// Find the width & height attributes as we need to set the imageprocessor QueryString
var width = img.GetAttributeValue("width", int.MinValue);