ExtraRuleType.cs 765 B

123456789101112131415161718192021222324252627
  1. #pragma warning disable CS1591
  2. namespace Emby.Naming.Video
  3. {
  4. public enum ExtraRuleType
  5. {
  6. /// <summary>
  7. /// Match <see cref="ExtraRule.Token"/> against a suffix in the file name.
  8. /// </summary>
  9. Suffix = 0,
  10. /// <summary>
  11. /// Match <see cref="ExtraRule.Token"/> against the file name, excluding the file extension.
  12. /// </summary>
  13. Filename = 1,
  14. /// <summary>
  15. /// Match <see cref="ExtraRule.Token"/> against the file name, including the file extension.
  16. /// </summary>
  17. Regex = 2,
  18. /// <summary>
  19. /// Match <see cref="ExtraRule.Token"/> against the name of the directory containing the file.
  20. /// </summary>
  21. DirectoryName = 3,
  22. }
  23. }