2013-03-06 22:34:00 -07:00
|
|
|
|
using MediaBrowser.Common;
|
|
|
|
|
using MediaBrowser.Model.System;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller
|
|
|
|
|
{
|
2013-04-19 13:27:02 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IServerApplicationHost
|
|
|
|
|
/// </summary>
|
2013-03-06 22:34:00 -07:00
|
|
|
|
public interface IServerApplicationHost : IApplicationHost
|
|
|
|
|
{
|
2013-04-19 13:27:02 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the system info.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>SystemInfo.</returns>
|
2013-03-06 22:34:00 -07:00
|
|
|
|
SystemInfo GetSystemInfo();
|
2013-06-03 11:15:35 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name of the web application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the web application.</value>
|
|
|
|
|
string WebApplicationName { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP server URL prefix.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP server URL prefix.</value>
|
|
|
|
|
string HttpServerUrlPrefix { get; }
|
2013-03-06 22:34:00 -07:00
|
|
|
|
}
|
|
|
|
|
}
|