mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 23:13:06 +03:00
17 lines
613 B
C#
17 lines
613 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Controller.Channels
|
|||
|
|
{
|
|||
|
|
public interface ISearchableChannel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Searches the specified search term.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="searchInfo">The search information.</param>
|
|||
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|||
|
|
/// <returns>Task{IEnumerable{ChannelItemInfo}}.</returns>
|
|||
|
|
Task<IEnumerable<ChannelItemInfo>> Search(ChannelSearchInfo searchInfo, CancellationToken cancellationToken);
|
|||
|
|
}
|
|||
|
|
}
|