diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-03 23:53:49 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-03 23:53:49 -0500 |
| commit | f1a48321755b8015aa121a64afd48818dfcf53ce (patch) | |
| tree | 333fe77f5153b07eb965d7936d88039c7c423811 /MediaBrowser.Controller/Library | |
| parent | f93fb4650c2e79655222be6f3e81d360c75c8532 (diff) | |
added cast icon to now playing bar to send current media to another client
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ISearchEngine.cs (renamed from MediaBrowser.Controller/Library/ILibrarySearchEngine.cs) | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/MediaBrowser.Controller/Library/ILibrarySearchEngine.cs b/MediaBrowser.Controller/Library/ISearchEngine.cs index ff4dcbe5b..807d21302 100644 --- a/MediaBrowser.Controller/Library/ILibrarySearchEngine.cs +++ b/MediaBrowser.Controller/Library/ISearchEngine.cs @@ -7,18 +7,9 @@ namespace MediaBrowser.Controller.Library /// <summary> /// Interface ILibrarySearchEngine /// </summary> - public interface ILibrarySearchEngine + public interface ISearchEngine { /// <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> |
