TagService
using Umbraco.Cms.Core.Services;Getting the service
Dependency Injection
public class MyClass
{
private ITagService _tagService;
public MyClass(ITagService tagService)
{
_tagService = tagService;
}
}Last updated
Was this helpful?