AzureWebFarm.Services.IISManager.IISManager C# (CSharp) Method

IISManager() public method

public IISManager ( string localSitesPath, string tempSitesPath, ISyncStatusRepository syncStatusRepository, ILoggerFactory loggerFactory, LoggerLevel logLevel ) : System
localSitesPath string
tempSitesPath string
syncStatusRepository ISyncStatusRepository
loggerFactory ILoggerFactory
logLevel LoggerLevel
return System
        public IISManager(string localSitesPath, string tempSitesPath, ISyncStatusRepository syncStatusRepository, ILoggerFactory loggerFactory, LoggerLevel logLevel)
        {
            _syncStatusRepository = syncStatusRepository;
            _localSitesPath = localSitesPath;
            _tempSitesPath = tempSitesPath;
            _logger = loggerFactory.Create(GetType(), logLevel);
        }