2
0

IConfigurationFactory.cs 599 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Common.Configuration
  3. {
  4. /// <summary>
  5. /// Provides an interface to retrieve a configuration store. Classes with this interface are scanned for at
  6. /// application start to dynamically register configuration for various modules/plugins.
  7. /// </summary>
  8. public interface IConfigurationFactory
  9. {
  10. /// <summary>
  11. /// Get the configuration store for this module.
  12. /// </summary>
  13. /// <returns>The configuration store.</returns>
  14. IEnumerable<ConfigurationStore> GetConfigurations();
  15. }
  16. }