jellyfin/MediaBrowser.Controller/IServerApplicationHost.cs

30 lines
802 B
C#
Raw Normal View History

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