2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Configuration
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IServerConfigurationManager
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IServerConfigurationManager : IConfigurationManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the application paths.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The application paths.</value>
|
|
|
|
|
IServerApplicationPaths ApplicationPaths { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The configuration.</value>
|
|
|
|
|
ServerConfiguration Configuration { get; }
|
2014-07-11 04:27:46 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the preferred metadata service.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="service">The service.</param>
|
2014-07-13 04:55:56 +00:00
|
|
|
|
void DisableMetadataService(string service);
|
2013-03-04 05:43:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|