RedirectUrlService
using Umbraco.Cms.Core.Services;Getting the service
Dependency Injection
public class MyClass
{
private IRedirectUrlService _redirectUrlService;
public MyClass(IRedirectUrlService redirectUrlService)
{
_redirectUrlService = redirectUrlService;
}
}Last updated
Was this helpful?