comments
This commit is contained in:
parent
3622f9b207
commit
3ff23530e7
|
@ -9,11 +9,12 @@ namespace MediaBrowser.Controller.Library
|
||||||
public interface ILibrarySearchEngine
|
public interface ILibrarySearchEngine
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sorts the specified items.
|
/// Searches items and returns them in order of relevance.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="items">The items.</param>
|
/// <param name="items">The items.</param>
|
||||||
/// <param name="searchTerm">The search term.</param>
|
/// <param name="searchTerm">The search term.</param>
|
||||||
/// <returns>IEnumerable{BaseItem}.</returns>
|
/// <returns>IEnumerable{BaseItem}.</returns>
|
||||||
|
/// <exception cref="System.ArgumentNullException">searchTerm</exception>
|
||||||
IEnumerable<BaseItem> Search(IEnumerable<BaseItem> items, string searchTerm);
|
IEnumerable<BaseItem> Search(IEnumerable<BaseItem> items, string searchTerm);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||||
public class LuceneSearchEngine : ILibrarySearchEngine
|
public class LuceneSearchEngine : ILibrarySearchEngine
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sorts the specified items.
|
/// Searches items and returns them in order of relevance.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="items">The items.</param>
|
/// <param name="items">The items.</param>
|
||||||
/// <param name="searchTerm">The search term.</param>
|
/// <param name="searchTerm">The search term.</param>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user