Remove public Host property

This commit is contained in:
Claus Vium 2019-03-06 19:27:05 +01:00
parent 394d23a73a
commit 21c2acc520

View file

@ -129,7 +129,7 @@ namespace Emby.Server.Implementations
/// </summary> /// </summary>
/// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value> /// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
public abstract bool CanSelfRestart { get; } public abstract bool CanSelfRestart { get; }
public IWebHost Host { get; set; }
public virtual bool CanLaunchWebBrowser public virtual bool CanLaunchWebBrowser
{ {
get get
@ -625,7 +625,7 @@ namespace Emby.Server.Implementations
contentRoot = Path.Combine(ServerConfigurationManager.ApplicationPaths.ApplicationResourcesPath, "jellyfin-web", "src"); contentRoot = Path.Combine(ServerConfigurationManager.ApplicationPaths.ApplicationResourcesPath, "jellyfin-web", "src");
} }
Host = new WebHostBuilder() var host = new WebHostBuilder()
.UseKestrel(options => .UseKestrel(options =>
{ {
options.ListenAnyIP(HttpPort); options.ListenAnyIP(HttpPort);
@ -652,10 +652,10 @@ namespace Emby.Server.Implementations
}) })
.Build(); .Build();
await Host.StartAsync(); await host.StartAsync();
} }
public async Task ExecuteWebsocketHandlerAsync(HttpContext context, Func<Task> next) private async Task ExecuteWebsocketHandlerAsync(HttpContext context, Func<Task> next)
{ {
if (!context.WebSockets.IsWebSocketRequest) if (!context.WebSockets.IsWebSocketRequest)
{ {
@ -665,7 +665,8 @@ namespace Emby.Server.Implementations
await HttpServer.ProcessWebSocketRequest(context).ConfigureAwait(false); await HttpServer.ProcessWebSocketRequest(context).ConfigureAwait(false);
} }
public async Task ExecuteHttpHandlerAsync(HttpContext context, Func<Task> next)
private async Task ExecuteHttpHandlerAsync(HttpContext context, Func<Task> next)
{ {
if (context.WebSockets.IsWebSocketRequest) if (context.WebSockets.IsWebSocketRequest)
{ {