AzureWebFarm.Services.BackgroundWorkerService.BackgroundWorkerService C# (CSharp) Метод

BackgroundWorkerService() публичный Метод

public BackgroundWorkerService ( string sitesPath, string executablePath, ILoggerFactory loggerFactory, LoggerLevel logLevel ) : System
sitesPath string
executablePath string
loggerFactory ILoggerFactory
logLevel LoggerLevel
Результат System
        public BackgroundWorkerService(string sitesPath, string executablePath, ILoggerFactory loggerFactory, LoggerLevel logLevel)
        {
            _executablePath = executablePath;
            _executables = new Dictionary<string, List<Executable>>();
            _executableFinder = new ExecutableFinder(sitesPath);
            _logger = loggerFactory.Create(GetType(), logLevel);
        }