diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-08 23:44:51 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-08 23:44:51 -0500 |
| commit | 247a40fa614241b52babb29bc03b0afd9a9031f9 (patch) | |
| tree | 5e82b401988d9246d8da2e59a9e29d0c2627c743 /MediaBrowser.Controller/Net/IHttpServer.cs | |
| parent | dcc5f9ebab9fe0260d6886d79284ccdce83a4814 (diff) | |
add console logging during startup
Diffstat (limited to 'MediaBrowser.Controller/Net/IHttpServer.cs')
| -rw-r--r-- | MediaBrowser.Controller/Net/IHttpServer.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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]. |
