aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-11-24 19:25:46 +0100
committerClaus Vium <clausvium@gmail.com>2019-11-24 19:25:46 +0100
commit47a4f2f387825d9c249c53b3796a43e3eac52b58 (patch)
tree7c6dd55ccb23b400f5ebb70e320f51f9625157ca /Emby.Server.Implementations/ApplicationHost.cs
parent2af5922af06c865d676e817112ef76a92a23e1b6 (diff)
Fix more review comments
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs21
1 files changed, 15 insertions, 6 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 4fd08258a..c5f8b58c4 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -237,6 +237,21 @@ namespace Emby.Server.Implementations
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>
/// <value>The server configuration manager.</value>
@@ -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>