FileService
using Umbraco.Cms.Core.Services;@using Umbraco.Cms.Core.ServicesGetting the service
Dependency Injection
public class MyClass
{
private IFileService _fileService;
public MyClass(IFileService fileService)
{
_fileService = fileService;
}
}Last updated
Was this helpful?