mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 11:07:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Entities;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Interface ILibrarySearchEngine
 | 
						|
    /// </summary>
 | 
						|
    public interface ILibrarySearchEngine
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// 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);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the search hints.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="inputItems">The input items.</param>
 | 
						|
        /// <param name="searchTerm">The search term.</param>
 | 
						|
        /// <returns>Task{IEnumerable{SearchHintInfo}}.</returns>
 | 
						|
        Task<IEnumerable<SearchHintInfo>> GetSearchHints(IEnumerable<BaseItem> inputItems, string searchTerm);
 | 
						|
    }
 | 
						|
}
 |