aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/IServerApplicationHost.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2015-02-09 16:58:30 -0500
committerLuke <luke.pulverenti@gmail.com>2015-02-09 16:58:30 -0500
commit4cc3b2f0ccd7c092a4acf72db4903415e175037a (patch)
treef9f90f8665b726253b8b357674f2f141aa43abc9 /MediaBrowser.Controller/IServerApplicationHost.cs
parente7037a9b80843c127712f11430239f8fa3cb4aed (diff)
parent3d7089a7dbabb652730c892206ca050f52f832b1 (diff)
Merge pull request #1005 from MediaBrowser/dev
3.0.5518.0
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
-rw-r--r--MediaBrowser.Controller/IServerApplicationHost.cs36
1 files changed, 24 insertions, 12 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs
index d1a9b386c..105e4e2f0 100644
--- a/MediaBrowser.Controller/IServerApplicationHost.cs
+++ b/MediaBrowser.Controller/IServerApplicationHost.cs
@@ -1,7 +1,7 @@
-using System.Collections.Generic;
-using MediaBrowser.Common;
+using MediaBrowser.Common;
using MediaBrowser.Model.System;
using System;
+using System.Collections.Generic;
namespace MediaBrowser.Controller
{
@@ -19,12 +19,6 @@ namespace MediaBrowser.Controller
SystemInfo GetSystemInfo();
/// <summary>
- /// Gets the name of the web application.
- /// </summary>
- /// <value>The name of the web application.</value>
- string WebApplicationName { get; }
-
- /// <summary>
/// Gets a value indicating whether [supports automatic run at startup].
/// </summary>
/// <value><c>true</c> if [supports automatic run at startup]; otherwise, <c>false</c>.</value>
@@ -34,7 +28,19 @@ namespace MediaBrowser.Controller
/// Gets the HTTP server port.
/// </summary>
/// <value>The HTTP server port.</value>
- int HttpServerPort { get; }
+ int HttpPort { get; }
+
+ /// <summary>
+ /// Gets the HTTPS port.
+ /// </summary>
+ /// <value>The HTTPS port.</value>
+ int HttpsPort { get; }
+
+ /// <summary>
+ /// Gets a value indicating whether [supports HTTPS].
+ /// </summary>
+ /// <value><c>true</c> if [supports HTTPS]; otherwise, <c>false</c>.</value>
+ bool EnableHttps { get; }
/// <summary>
/// Gets a value indicating whether this instance has update available.
@@ -49,9 +55,15 @@ namespace MediaBrowser.Controller
string FriendlyName { get; }
/// <summary>
- /// Gets the HTTP server ip addresses.
+ /// Gets the local ip address.
+ /// </summary>
+ /// <value>The local ip address.</value>
+ string LocalIpAddress { get; }
+
+ /// <summary>
+ /// Gets the local API URL.
/// </summary>
- /// <value>The HTTP server ip addresses.</value>
- IEnumerable<string> HttpServerIpAddresses { get; }
+ /// <value>The local API URL.</value>
+ string LocalApiUrl { get; }
}
}