TextService
using Umbraco.Cms.Core.Services;Getting the service
Dependency Injection
public class MyClass
{
private ILocalizedTextService _textService;
public MyClass(ILocalizedTextService textService)
{
_textService = textService;
}
}Last updated
Was this helpful?