MetadataRefreshMode.cs 559 B

12345678910111213141516171819202122232425
  1. namespace MediaBrowser.Controller.Providers
  2. {
  3. public enum MetadataRefreshMode
  4. {
  5. /// <summary>
  6. /// The none.
  7. /// </summary>
  8. None = 0,
  9. /// <summary>
  10. /// The validation only.
  11. /// </summary>
  12. ValidationOnly = 1,
  13. /// <summary>
  14. /// Providers will be executed based on default rules.
  15. /// </summary>
  16. Default = 2,
  17. /// <summary>
  18. /// All providers will be executed to search for new metadata.
  19. /// </summary>
  20. FullRefresh = 3
  21. }
  22. }