create single method to form api url

This commit is contained in:
Luke Pulverenti
2015-02-10 00:54:58 -05:00
parent 3d7089a7db
commit 0052f0a09d
71 changed files with 22672 additions and 22657 deletions

View File

@@ -1,7 +1,6 @@
using MediaBrowser.Common;
using MediaBrowser.Model.System;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller
{
@@ -65,5 +64,12 @@ namespace MediaBrowser.Controller
/// </summary>
/// <value>The local API URL.</value>
string LocalApiUrl { get; }
/// <summary>
/// Gets the local API URL.
/// </summary>
/// <param name="host">The host.</param>
/// <returns>System.String.</returns>
string GetLocalApiUrl(string host);
}
}