jellyfin/MediaBrowser.Controller/Entities/KeywordExtensions.cs

22 lines
514 B
C#
Raw Normal View History

2014-01-14 16:50:39 +01:00
using System;
using System.Linq;
namespace MediaBrowser.Controller.Entities
{
public static class KeywordExtensions
{
public static void AddKeyword(this BaseItem item, string name)
2014-01-14 16:50:39 +01:00
{
if (string.IsNullOrWhiteSpace(name))
{
throw new ArgumentNullException("name");
}
if (!item.Keywords.Contains(name, StringComparer.OrdinalIgnoreCase))
{
item.Keywords.Add(name);
}
}
}
}