We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c0990 commit b21c2bbCopy full SHA for b21c2bb
src/Umbraco.Core/Routing/IUrlProvider.cs
@@ -41,9 +41,11 @@ public interface IUrlProvider
41
IEnumerable<UrlInfo> GetOtherUrls(int id, Uri current);
42
43
/// <summary>
44
- /// Gets the preview URLs of a content item.
+ /// Gets the preview URL of a content item.
45
/// </summary>
46
/// <param name="content">The content item.</param>
47
+ /// <param name="culture">The culture to preview (null means invariant).</param>
48
+ /// <param name="segment">The segment to preview (null means no specific segment).</param>
49
/// <returns>The preview URLs of the content item.</returns>
50
Task<UrlInfo?> GetPreviewUrlAsync(IContent content, string? culture, string? segment);
51
0 commit comments