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-01 09:53:19 -07:00
|
|
|
/// Match <see cref="ExtraRule.Token"/> against the file name.
|
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-01 09:53:19 -07:00
|
|
|
/// Match <see cref="ExtraRule.Token"/> against the a regex.
|
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>
|
|
|
|
DirectoryName = 3,
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
|
|
|
}
|