2019-12-13 12:11:37 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
|
|
|
public enum ExtraRuleType
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-01 09:53:19 -07:00
|
|
|
/// Match <see cref="ExtraRule.Token"/> against a suffix in the file name.
|
2018-09-12 10:26:21 -07:00
|
|
|
/// </summary>
|
|
|
|
Suffix = 0,
|
2019-12-13 12:11:37 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
/// <summary>
|
2020-04-05 06:47:20 -07:00
|
|
|
/// Match <see cref="ExtraRule.Token"/> against the file name, excluding the file extension.
|
2018-09-12 10:26:21 -07:00
|
|
|
/// </summary>
|
|
|
|
Filename = 1,
|
2019-12-13 12:11:37 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
/// <summary>
|
2020-04-05 06:47:20 -07:00
|
|
|
/// Match <see cref="ExtraRule.Token"/> against the file name, including the file extension.
|
2018-09-12 10:26:21 -07:00
|
|
|
/// </summary>
|
2020-04-01 09:53:19 -07:00
|
|
|
Regex = 2,
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-01 10:04:00 -07:00
|
|
|
/// Match <see cref="ExtraRule.Token"/> against the name of the directory containing the file.
|
2020-04-01 09:53:19 -07:00
|
|
|
/// </summary>
|
2020-11-01 03:19:22 -07:00
|
|
|
DirectoryName = 3
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
|
|
|
}
|