diff options
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 6 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Net/IHttpServer.cs | 6 |
2 files changed, 3 insertions, 9 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index f3312d2cb..5554ced37 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -21,12 +21,6 @@ namespace MediaBrowser.Controller string WebApplicationName { get; } /// <summary> - /// Gets the HTTP server URL prefix. - /// </summary> - /// <value>The HTTP server URL prefix.</value> - string HttpServerUrlPrefix { 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> diff --git a/MediaBrowser.Controller/Net/IHttpServer.cs b/MediaBrowser.Controller/Net/IHttpServer.cs index ba2cd0ccc..20f07c74d 100644 --- a/MediaBrowser.Controller/Net/IHttpServer.cs +++ b/MediaBrowser.Controller/Net/IHttpServer.cs @@ -13,13 +13,13 @@ namespace MediaBrowser.Controller.Net /// Gets the URL prefix. /// </summary> /// <value>The URL prefix.</value> - string UrlPrefix { get; } + IEnumerable<string> UrlPrefixes { get; } /// <summary> /// Starts the specified server name. /// </summary> - /// <param name="urlPrefix">The URL.</param> - void StartServer(string urlPrefix); + /// <param name="urlPrefixes">The URL prefixes.</param> + void StartServer(IEnumerable<string> urlPrefixes); /// <summary> /// Gets a value indicating whether [supports web sockets]. |
