using MediaBrowser.Common; using MediaBrowser.Model.System; namespace MediaBrowser.Controller { /// /// Interface IServerApplicationHost /// public interface IServerApplicationHost : IApplicationHost { /// /// Gets the system info. /// /// SystemInfo. SystemInfo GetSystemInfo(); /// /// Gets the name of the web application. /// /// The name of the web application. string WebApplicationName { get; } /// /// Gets the HTTP server URL prefix. /// /// The HTTP server URL prefix. string HttpServerUrlPrefix { get; } } }