mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-02 18:43:56 +02:00
comments
This commit is contained in:
parent
3622f9b207
commit
3ff23530e7
2 changed files with 3 additions and 2 deletions
|
|
@ -9,11 +9,12 @@ namespace MediaBrowser.Controller.Library
|
|||
public interface ILibrarySearchEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Sorts the specified items.
|
||||
/// Searches items and returns them in order of relevance.
|
||||
/// </summary>
|
||||
/// <param name="items">The items.</param>
|
||||
/// <param name="searchTerm">The search term.</param>
|
||||
/// <returns>IEnumerable{BaseItem}.</returns>
|
||||
/// <exception cref="System.ArgumentNullException">searchTerm</exception>
|
||||
IEnumerable<BaseItem> Search(IEnumerable<BaseItem> items, string searchTerm);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
|||
public class LuceneSearchEngine : ILibrarySearchEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Sorts the specified items.
|
||||
/// Searches items and returns them in order of relevance.
|
||||
/// </summary>
|
||||
/// <param name="items">The items.</param>
|
||||
/// <param name="searchTerm">The search term.</param>
|
||||
|
|
|
|||
Loading…
Reference in a new issue