jellyfin/MediaBrowser.Controller/IServerApplicationHost.cs

30 lines
802 B
C#
Raw Normal View History

2013-03-07 00:34:00 -05:00
using MediaBrowser.Common;
using MediaBrowser.Model.System;
namespace MediaBrowser.Controller
{
2013-04-19 16:27:02 -04:00
/// <summary>
/// Interface IServerApplicationHost
/// </summary>
2013-03-07 00:34:00 -05:00
public interface IServerApplicationHost : IApplicationHost
{
2013-04-19 16:27:02 -04:00
/// <summary>
/// Gets the system info.
/// </summary>
/// <returns>SystemInfo.</returns>
2013-03-07 00:34:00 -05:00
SystemInfo GetSystemInfo();
2013-06-03 14:15:35 -04: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-07 00:34:00 -05:00
}
}