diff options
Diffstat (limited to 'MediaBrowser.Controller/Channels/IChannel.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/IChannel.cs | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Channels/IChannel.cs b/MediaBrowser.Controller/Channels/IChannel.cs index 527454284..7f03579f3 100644 --- a/MediaBrowser.Controller/Channels/IChannel.cs +++ b/MediaBrowser.Controller/Channels/IChannel.cs @@ -23,10 +23,16 @@ namespace MediaBrowser.Controller.Channels string DataVersion { get; } /// <summary> + /// Gets the home page URL. + /// </summary> + /// <value>The home page URL.</value> + string HomePageUrl { get; } + + /// <summary> /// Gets the channel information. /// </summary> - /// <returns>ChannelInfo.</returns> - ChannelInfo GetChannelInfo(); + /// <returns>ChannelFeatures.</returns> + ChannelFeatures GetChannelFeatures(); /// <summary> /// Determines whether [is enabled for] [the specified user]. @@ -53,6 +59,14 @@ namespace MediaBrowser.Controller.Channels Task<ChannelItemResult> GetChannelItems(InternalChannelItemQuery query, CancellationToken cancellationToken); /// <summary> + /// Gets all media. + /// </summary> + /// <param name="query">The query.</param> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task{ChannelItemResult}.</returns> + Task<ChannelItemResult> GetAllMedia(InternalAllChannelItemsQuery query, CancellationToken cancellationToken); + + /// <summary> /// Gets the channel image. /// </summary> /// <param name="type">The type.</param> |
