diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-19 15:51:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-19 15:51:56 -0400 |
| commit | ad3c30c14535780fcbd11b049603991e8d3cfe9e (patch) | |
| tree | 78b02746ba417645141cc27b06675941d2bfd5e6 /MediaBrowser.Controller/Channels/IChannelManager.cs | |
| parent | b98be6d7f1627b8031288e4e8785d5ab9072fb29 (diff) | |
support sending channel paging direct to the provider
Diffstat (limited to 'MediaBrowser.Controller/Channels/IChannelManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/IChannelManager.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Channels/IChannelManager.cs b/MediaBrowser.Controller/Channels/IChannelManager.cs index a47f6e6ae..9ffe43827 100644 --- a/MediaBrowser.Controller/Channels/IChannelManager.cs +++ b/MediaBrowser.Controller/Channels/IChannelManager.cs @@ -17,6 +17,13 @@ namespace MediaBrowser.Controller.Channels void AddParts(IEnumerable<IChannel> channels, IEnumerable<IChannelFactory> factories); /// <summary> + /// Gets the channel. + /// </summary> + /// <param name="id">The identifier.</param> + /// <returns>Channel.</returns> + Channel GetChannel(string id); + + /// <summary> /// Gets the channels. /// </summary> /// <param name="query">The query.</param> |
