Fix more review comments

This commit is contained in:
Claus Vium
2019-11-24 19:25:46 +01:00
parent 2af5922af0
commit 47a4f2f387
10 changed files with 62 additions and 20 deletions

View File

@@ -236,6 +236,21 @@ namespace Emby.Server.Implementations
/// </summary>
public IServiceProvider ServiceProvider { get; set; }
/// <summary>
/// Gets the http port for the webhost.
/// </summary>
public int HttpPort { get; private set; }
/// <summary>
/// Gets the https port for the webhost.
/// </summary>
public int HttpsPort { get; private set; }
/// <summary>
/// Gets the content root for the webhost.
/// </summary>
public string ContentRoot { get; private set; }
/// <summary>
/// Gets the server configuration manager.
/// </summary>
@@ -1604,12 +1619,6 @@ namespace Emby.Server.Implementations
? Environment.MachineName
: ServerConfigurationManager.Configuration.ServerName;
public int HttpPort { get; private set; }
public int HttpsPort { get; private set; }
public string ContentRoot { get; private set; }
/// <summary>
/// Shuts down.
/// </summary>