| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722 | using MediaBrowser.Api;using MediaBrowser.Common;using MediaBrowser.Common.Configuration;using MediaBrowser.Common.Constants;using MediaBrowser.Common.Extensions;using MediaBrowser.Common.Implementations;using MediaBrowser.Common.Implementations.ScheduledTasks;using MediaBrowser.Common.IO;using MediaBrowser.Common.MediaInfo;using MediaBrowser.Common.Net;using MediaBrowser.Controller;using MediaBrowser.Controller.Configuration;using MediaBrowser.Controller.Drawing;using MediaBrowser.Controller.Dto;using MediaBrowser.Controller.Entities;using MediaBrowser.Controller.IO;using MediaBrowser.Controller.Library;using MediaBrowser.Controller.LiveTv;using MediaBrowser.Controller.Localization;using MediaBrowser.Controller.MediaInfo;using MediaBrowser.Controller.Notifications;using MediaBrowser.Controller.Persistence;using MediaBrowser.Controller.Plugins;using MediaBrowser.Controller.Providers;using MediaBrowser.Controller.Resolvers;using MediaBrowser.Controller.Session;using MediaBrowser.Controller.Sorting;using MediaBrowser.Model.Logging;using MediaBrowser.Model.MediaInfo;using MediaBrowser.Model.System;using MediaBrowser.Model.Updates;using MediaBrowser.Providers;using MediaBrowser.Server.Implementations;using MediaBrowser.Server.Implementations.BdInfo;using MediaBrowser.Server.Implementations.Configuration;using MediaBrowser.Server.Implementations.Drawing;using MediaBrowser.Server.Implementations.Dto;using MediaBrowser.Server.Implementations.EntryPoints;using MediaBrowser.Server.Implementations.HttpServer;using MediaBrowser.Server.Implementations.IO;using MediaBrowser.Server.Implementations.Library;using MediaBrowser.Server.Implementations.LiveTv;using MediaBrowser.Server.Implementations.Localization;using MediaBrowser.Server.Implementations.MediaEncoder;using MediaBrowser.Server.Implementations.Persistence;using MediaBrowser.Server.Implementations.Providers;using MediaBrowser.Server.Implementations.ServerManager;using MediaBrowser.Server.Implementations.Session;using MediaBrowser.Server.Implementations.WebSocket;using MediaBrowser.ServerApplication.FFMpeg;using MediaBrowser.ServerApplication.IO;using MediaBrowser.ServerApplication.Native;using MediaBrowser.ServerApplication.Networking;using MediaBrowser.WebDashboard.Api;using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net.Http;using System.Reflection;using System.Threading;using System.Threading.Tasks;namespace MediaBrowser.ServerApplication{    /// <summary>    /// Class CompositionRoot    /// </summary>    public class ApplicationHost : BaseApplicationHost<ServerApplicationPaths>, IServerApplicationHost    {        /// <summary>        /// Gets the server kernel.        /// </summary>        /// <value>The server kernel.</value>        protected Kernel ServerKernel { get; set; }        /// <summary>        /// Gets the server configuration manager.        /// </summary>        /// <value>The server configuration manager.</value>        public IServerConfigurationManager ServerConfigurationManager        {            get { return (IServerConfigurationManager)ConfigurationManager; }        }        /// <summary>        /// Gets the name of the web application that can be used for url building.        /// All api urls will be of the form {protocol}://{host}:{port}/{appname}/...        /// </summary>        /// <value>The name of the web application.</value>        public string WebApplicationName        {            get { return "mediabrowser"; }        }        /// <summary>        /// Gets the HTTP server URL prefix.        /// </summary>        /// <value>The HTTP server URL prefix.</value>        public string HttpServerUrlPrefix        {            get            {                return "http://+:" + ServerConfigurationManager.Configuration.HttpServerPortNumber + "/" + WebApplicationName + "/";            }        }        /// <summary>        /// Gets the configuration manager.        /// </summary>        /// <returns>IConfigurationManager.</returns>        protected override IConfigurationManager GetConfigurationManager()        {            return new ServerConfigurationManager(ApplicationPaths, LogManager, XmlSerializer);        }        /// <summary>        /// Gets or sets the server manager.        /// </summary>        /// <value>The server manager.</value>        private IServerManager ServerManager { get; set; }        /// <summary>        /// Gets or sets the user manager.        /// </summary>        /// <value>The user manager.</value>        public IUserManager UserManager { get; set; }        /// <summary>        /// Gets or sets the library manager.        /// </summary>        /// <value>The library manager.</value>        internal ILibraryManager LibraryManager { get; set; }        /// <summary>        /// Gets or sets the directory watchers.        /// </summary>        /// <value>The directory watchers.</value>        private IDirectoryWatchers DirectoryWatchers { get; set; }        /// <summary>        /// Gets or sets the provider manager.        /// </summary>        /// <value>The provider manager.</value>        private IProviderManager ProviderManager { get; set; }        /// <summary>        /// Gets or sets the HTTP server.        /// </summary>        /// <value>The HTTP server.</value>        private IHttpServer HttpServer { get; set; }        private IDtoService DtoService { get; set; }        private IImageProcessor ImageProcessor { get; set; }        /// <summary>        /// Gets or sets the media encoder.        /// </summary>        /// <value>The media encoder.</value>        private IMediaEncoder MediaEncoder { get; set; }        private ISessionManager SessionManager { get; set; }        private ILiveTvManager LiveTvManager { get; set; }        private ILocalizationManager LocalizationManager { get; set; }        /// <summary>        /// Gets or sets the user data repository.        /// </summary>        /// <value>The user data repository.</value>        private IUserDataManager UserDataManager { get; set; }        private IUserRepository UserRepository { get; set; }        internal IDisplayPreferencesRepository DisplayPreferencesRepository { get; set; }        private IItemRepository ItemRepository { get; set; }        private INotificationsRepository NotificationsRepository { get; set; }        private Task<IHttpServer> _httpServerCreationTask;        /// <summary>        /// Initializes a new instance of the <see cref="ApplicationHost"/> class.        /// </summary>        /// <param name="applicationPaths">The application paths.</param>        /// <param name="logManager">The log manager.</param>        public ApplicationHost(ServerApplicationPaths applicationPaths, ILogManager logManager)            : base(applicationPaths, logManager)        {        }        /// <summary>        /// Gets a value indicating whether this instance can self restart.        /// </summary>        /// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>        public override bool CanSelfRestart        {            get { return NativeApp.CanSelfRestart; }        }        /// <summary>        /// Runs the startup tasks.        /// </summary>        /// <returns>Task.</returns>        public override async Task RunStartupTasks()        {            await base.RunStartupTasks().ConfigureAwait(false);            DirectoryWatchers.Start();            Logger.Info("Core startup complete");            Parallel.ForEach(GetExports<IServerEntryPoint>(), entryPoint =>            {                try                {                    entryPoint.Run();                }                catch (Exception ex)                {                    Logger.ErrorException("Error in {0}", ex, entryPoint.GetType().Name);                }            });        }        /// <summary>        /// Called when [logger loaded].        /// </summary>        protected override void OnLoggerLoaded()        {            base.OnLoggerLoaded();            _httpServerCreationTask = Task.Run(() => ServerFactory.CreateServer(this, LogManager, "Media Browser", "dashboard/index.html"));        }        /// <summary>        /// Registers resources that classes will depend on        /// </summary>        /// <returns>Task.</returns>        protected override async Task RegisterResources()        {            ServerKernel = new Kernel();            await base.RegisterResources().ConfigureAwait(false);            RegisterSingleInstance<IHttpResultFactory>(new HttpResultFactory(LogManager, FileSystemManager));            RegisterSingleInstance<IServerApplicationHost>(this);            RegisterSingleInstance<IServerApplicationPaths>(ApplicationPaths);            RegisterSingleInstance(ServerKernel);            RegisterSingleInstance(ServerConfigurationManager);            RegisterSingleInstance<IWebSocketServer>(() => new AlchemyServer(Logger));            RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer());            var mediaEncoderTask = RegisterMediaEncoder();            UserDataManager = new UserDataManager(LogManager);            RegisterSingleInstance(UserDataManager);            UserRepository = await GetUserRepository().ConfigureAwait(false);            RegisterSingleInstance(UserRepository);            DisplayPreferencesRepository = new SqliteDisplayPreferencesRepository(ApplicationPaths, JsonSerializer, LogManager);            RegisterSingleInstance(DisplayPreferencesRepository);            ItemRepository = new SqliteItemRepository(ApplicationPaths, JsonSerializer, LogManager);            RegisterSingleInstance(ItemRepository);            UserManager = new UserManager(Logger, ServerConfigurationManager, UserRepository);            RegisterSingleInstance(UserManager);            LibraryManager = new LibraryManager(Logger, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => DirectoryWatchers, FileSystemManager);            RegisterSingleInstance(LibraryManager);            DirectoryWatchers = new DirectoryWatchers(LogManager, TaskManager, LibraryManager, ServerConfigurationManager, FileSystemManager);            RegisterSingleInstance(DirectoryWatchers);            ProviderManager = new ProviderManager(HttpClient, ServerConfigurationManager, DirectoryWatchers, LogManager, FileSystemManager);            RegisterSingleInstance(ProviderManager);            RegisterSingleInstance<ILibrarySearchEngine>(() => new LuceneSearchEngine(ApplicationPaths, LogManager, LibraryManager));            SessionManager = new SessionManager(UserDataManager, ServerConfigurationManager, Logger, UserRepository, LibraryManager);            RegisterSingleInstance(SessionManager);            HttpServer = await _httpServerCreationTask.ConfigureAwait(false);            RegisterSingleInstance(HttpServer, false);            ServerManager = new ServerManager(this, JsonSerializer, Logger, ServerConfigurationManager);            RegisterSingleInstance(ServerManager);            LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager);            RegisterSingleInstance(LocalizationManager);            ImageProcessor = new ImageProcessor(Logger, ServerConfigurationManager.ApplicationPaths, FileSystemManager);            RegisterSingleInstance(ImageProcessor);            DtoService = new DtoService(Logger, LibraryManager, UserManager, UserDataManager, ItemRepository, ImageProcessor);            RegisterSingleInstance(DtoService);            LiveTvManager = new LiveTvManager();            RegisterSingleInstance(LiveTvManager);            var displayPreferencesTask = Task.Run(async () => await ConfigureDisplayPreferencesRepositories().ConfigureAwait(false));            var itemsTask = Task.Run(async () => await ConfigureItemRepositories().ConfigureAwait(false));            var userdataTask = Task.Run(async () => await ConfigureUserDataRepositories().ConfigureAwait(false));            await ConfigureNotificationsRepository().ConfigureAwait(false);            await Task.WhenAll(itemsTask, displayPreferencesTask, userdataTask, mediaEncoderTask).ConfigureAwait(false);            SetKernelProperties();        }        protected override INetworkManager CreateNetworkManager()        {            return new NetworkManager();        }        protected override IFileSystem CreateFileSystemManager()        {            return FileSystemFactory.CreateFileSystemManager(LogManager);        }        /// <summary>        /// Registers the media encoder.        /// </summary>        /// <returns>Task.</returns>        private async Task RegisterMediaEncoder()        {            var info = await new FFMpegDownloader(Logger, ApplicationPaths, HttpClient, ZipClient, FileSystemManager).GetFFMpegInfo().ConfigureAwait(false);            MediaEncoder = new MediaEncoder(LogManager.GetLogger("MediaEncoder"), ApplicationPaths, JsonSerializer, info.Path, info.ProbePath, info.Version, FileSystemManager);            RegisterSingleInstance(MediaEncoder);        }        /// <summary>        /// Sets the kernel properties.        /// </summary>        private void SetKernelProperties()        {            Parallel.Invoke(                 () => ServerKernel.FFMpegManager = new FFMpegManager(ApplicationPaths, MediaEncoder, Logger, ItemRepository, FileSystemManager),                 () => LocalizedStrings.StringFiles = GetExports<LocalizedStringData>(),                 SetStaticProperties                 );        }        /// <summary>        /// Gets the user repository.        /// </summary>        /// <returns>Task{IUserRepository}.</returns>        private async Task<IUserRepository> GetUserRepository()        {            var repo = new SqliteUserRepository(JsonSerializer, LogManager, ApplicationPaths);            await repo.Initialize().ConfigureAwait(false);            return repo;        }        /// <summary>        /// Configures the repositories.        /// </summary>        /// <returns>Task.</returns>        private async Task ConfigureNotificationsRepository()        {            var repo = new SqliteNotificationsRepository(LogManager, ApplicationPaths);            await repo.Initialize().ConfigureAwait(false);            NotificationsRepository = repo;            RegisterSingleInstance(NotificationsRepository);        }        /// <summary>        /// Configures the repositories.        /// </summary>        /// <returns>Task.</returns>        private async Task ConfigureDisplayPreferencesRepositories()        {            await DisplayPreferencesRepository.Initialize().ConfigureAwait(false);        }        /// <summary>        /// Configures the item repositories.        /// </summary>        /// <returns>Task.</returns>        private async Task ConfigureItemRepositories()        {            await ItemRepository.Initialize().ConfigureAwait(false);            ((LibraryManager)LibraryManager).ItemRepository = ItemRepository;        }        /// <summary>        /// Configures the user data repositories.        /// </summary>        /// <returns>Task.</returns>        private async Task ConfigureUserDataRepositories()        {            var repo = new SqliteUserDataRepository(ApplicationPaths, JsonSerializer, LogManager);            await repo.Initialize().ConfigureAwait(false);            ((UserDataManager)UserDataManager).Repository = repo;        }        /// <summary>        /// Dirty hacks        /// </summary>        private void SetStaticProperties()        {            // For now there's no real way to inject these properly            BaseItem.Logger = LogManager.GetLogger("BaseItem");            BaseItem.ConfigurationManager = ServerConfigurationManager;            BaseItem.LibraryManager = LibraryManager;            BaseItem.ProviderManager = ProviderManager;            BaseItem.LocalizationManager = LocalizationManager;            BaseItem.ItemRepository = ItemRepository;            User.XmlSerializer = XmlSerializer;            User.UserManager = UserManager;            LocalizedStrings.ApplicationPaths = ApplicationPaths;            Folder.UserManager = UserManager;            BaseItem.FileSystem = FileSystemManager;        }        /// <summary>        /// Finds the parts.        /// </summary>        protected override void FindParts()        {            if (IsFirstRun)            {                RegisterServerWithAdministratorAccess();            }            base.FindParts();            HttpServer.Init(GetExports<IRestfulService>(false));            ServerManager.AddWebSocketListeners(GetExports<IWebSocketListener>(false));            StartServer(true);            LibraryManager.AddParts(GetExports<IResolverIgnoreRule>(),                                    GetExports<IVirtualFolderCreator>(),                                    GetExports<IItemResolver>(),                                    GetExports<IIntroProvider>(),                                    GetExports<IBaseItemComparer>(),                                    GetExports<ILibraryPrescanTask>(),                                    GetExports<ILibraryPostScanTask>(),                                    GetExports<IPeoplePrescanTask>(),                                    GetExports<IMetadataSaver>());            ProviderManager.AddParts(GetExports<BaseMetadataProvider>(), GetExports<IImageProvider>());            ImageProcessor.AddParts(GetExports<IImageEnhancer>());            LiveTvManager.AddParts(GetExports<ILiveTvService>());        }        /// <summary>        /// Starts the server.        /// </summary>        /// <param name="retryOnFailure">if set to <c>true</c> [retry on failure].</param>        private void StartServer(bool retryOnFailure)        {            try            {                ServerManager.Start(HttpServerUrlPrefix, ServerConfigurationManager.Configuration.EnableHttpLevelLogging);            }            catch (Exception ex)            {                Logger.ErrorException("Error starting http server", ex);                if (retryOnFailure)                {                    RegisterServerWithAdministratorAccess();                    StartServer(false);                }                else                {                    throw;                }            }            ServerManager.StartWebSocketServer();        }        /// <summary>        /// Called when [configuration updated].        /// </summary>        /// <param name="sender">The sender.</param>        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>        protected override void OnConfigurationUpdated(object sender, EventArgs e)        {            base.OnConfigurationUpdated(sender, e);            HttpServer.EnableHttpRequestLogging = ServerConfigurationManager.Configuration.EnableHttpLevelLogging;            if (!string.Equals(HttpServer.UrlPrefix, HttpServerUrlPrefix, StringComparison.OrdinalIgnoreCase))            {                NotifyPendingRestart();            }            else if (!ServerManager.SupportsNativeWebSocket && ServerManager.WebSocketPortNumber != ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber)            {                NotifyPendingRestart();            }        }        /// <summary>        /// Restarts this instance.        /// </summary>        public override async Task Restart()        {            if (!CanSelfRestart)            {                throw new InvalidOperationException("The server is unable to self-restart. Please restart manually.");            }            try            {                await SessionManager.SendServerRestartNotification(CancellationToken.None).ConfigureAwait(false);            }            catch (Exception ex)            {                Logger.ErrorException("Error sending server restart notification", ex);            }            NativeApp.Restart();        }        /// <summary>        /// Gets or sets a value indicating whether this instance can self update.        /// </summary>        /// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value>        public override bool CanSelfUpdate        {            get            {#if DEBUG                return false;#endif                return NativeApp.CanSelfUpdate;            }        }        /// <summary>        /// Gets the composable part assemblies.        /// </summary>        /// <returns>IEnumerable{Assembly}.</returns>        protected override IEnumerable<Assembly> GetComposablePartAssemblies()        {            var list = Directory.EnumerateFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly)                .Select(LoadAssembly)                .Where(a => a != null)                .ToList();            // Gets all plugin assemblies by first reading all bytes of the .dll and calling Assembly.Load against that            // This will prevent the .dll file from getting locked, and allow us to replace it when needed            // Include composable parts in the Api assembly             list.Add(typeof(ApiEntryPoint).Assembly);            // Include composable parts in the Dashboard assembly             list.Add(typeof(DashboardInfo).Assembly);            // Include composable parts in the Model assembly             list.Add(typeof(SystemInfo).Assembly);            // Include composable parts in the Common assembly             list.Add(typeof(IApplicationHost).Assembly);            // Include composable parts in the Controller assembly             list.Add(typeof(Kernel).Assembly);            // Include composable parts in the Providers assembly             list.Add(typeof(ImagesByNameProvider).Assembly);            // Common implementations            list.Add(typeof(TaskManager).Assembly);            // Server implementations            list.Add(typeof(ServerApplicationPaths).Assembly);            list.AddRange(Assemblies.GetAssembliesWithParts());            // Include composable parts in the running assembly            list.Add(GetType().Assembly);            return list;        }        private readonly string _systemId = Environment.MachineName.GetMD5().ToString();        /// <summary>        /// Gets the system status.        /// </summary>        /// <returns>SystemInfo.</returns>        public virtual SystemInfo GetSystemInfo()        {            return new SystemInfo            {                HasPendingRestart = HasPendingRestart,                Version = ApplicationVersion.ToString(),                IsNetworkDeployed = CanSelfUpdate,                WebSocketPortNumber = ServerManager.WebSocketPortNumber,                SupportsNativeWebSocket = ServerManager.SupportsNativeWebSocket,                FailedPluginAssemblies = FailedAssemblies.ToList(),                InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToList(),                CompletedInstallations = InstallationManager.CompletedInstallations.ToList(),                Id = _systemId,                ProgramDataPath = ApplicationPaths.ProgramDataPath,                MacAddress = GetMacAddress(),                HttpServerPortNumber = ServerConfigurationManager.Configuration.HttpServerPortNumber,                OperatingSystem = Environment.OSVersion.ToString(),                CanSelfRestart = CanSelfRestart,                CanSelfUpdate = CanSelfUpdate            };        }        /// <summary>        /// Gets the mac address.        /// </summary>        /// <returns>System.String.</returns>        private string GetMacAddress()        {            try            {                return NetworkManager.GetMacAddress();            }            catch (Exception ex)            {                Logger.ErrorException("Error getting mac address", ex);                return null;            }        }        /// <summary>        /// Shuts down.        /// </summary>        public override async Task Shutdown()        {            try            {                await SessionManager.SendServerShutdownNotification(CancellationToken.None).ConfigureAwait(false);            }            catch (Exception ex)            {                Logger.ErrorException("Error sending server shutdown notification", ex);            }            NativeApp.Shutdown();        }        /// <summary>        /// Registers the server with administrator access.        /// </summary>        private void RegisterServerWithAdministratorAccess()        {            Logger.Info("Requesting administrative access to authorize http server");            try            {                ServerAuthorization.AuthorizeServer(ServerConfigurationManager.Configuration.HttpServerPortNumber,                    HttpServerUrlPrefix, ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber,                    UdpServerEntryPoint.PortNumber,                    ConfigurationManager.CommonApplicationPaths.TempDirectory);            }            catch (Exception ex)            {                Logger.ErrorException("Error authorizing server", ex);            }        }        /// <summary>        /// Checks for update.        /// </summary>        /// <param name="cancellationToken">The cancellation token.</param>        /// <param name="progress">The progress.</param>        /// <returns>Task{CheckForUpdateResult}.</returns>        public override async Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress)        {            var availablePackages = await InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(cancellationToken).ConfigureAwait(false);            var version = InstallationManager.GetLatestCompatibleVersion(availablePackages, Constants.MbServerPkgName, ApplicationVersion,                                                           ConfigurationManager.CommonConfiguration.SystemUpdateLevel);            return version != null ? new CheckForUpdateResult { AvailableVersion = version.version, IsUpdateAvailable = version.version > ApplicationVersion, Package = version } :                       new CheckForUpdateResult { AvailableVersion = ApplicationVersion, IsUpdateAvailable = false };        }        /// <summary>        /// Updates the application.        /// </summary>        /// <param name="package">The package that contains the update</param>        /// <param name="cancellationToken">The cancellation token.</param>        /// <param name="progress">The progress.</param>        /// <returns>Task.</returns>        public override async Task UpdateApplication(PackageVersionInfo package, CancellationToken cancellationToken, IProgress<double> progress)        {            await InstallationManager.InstallPackage(package, progress, cancellationToken).ConfigureAwait(false);            OnApplicationUpdated(package.version);        }        /// <summary>        /// Creates the HTTP client.        /// </summary>        /// <param name="enableHttpCompression">if set to <c>true</c> [enable HTTP compression].</param>        /// <returns>HttpClient.</returns>        protected override HttpClient CreateHttpClient(bool enableHttpCompression)        {            return HttpClientFactory.GetHttpClient(enableHttpCompression);        }        protected override void ConfigureAutoRunAtStartup(bool autorun)        {            Autorun.Configure(autorun);        }    }}
 |