diff options
| author | sushilicious <*> | 2021-08-03 14:30:20 -0700 |
|---|---|---|
| committer | sushilicious <*> | 2021-08-03 14:30:20 -0700 |
| commit | 460fe76467031cd8dd89dff737575d2fc7310844 (patch) | |
| tree | 949621b6f4bb76ccb9aedc1064f7befa3c4a3f01 /MediaBrowser.Controller/Library/IMediaSourceProvider.cs | |
| parent | 26f8b501e77b7bd9a73028637e82de2f2605dd3a (diff) | |
| parent | 008c6a843ec832ec201db5ce8ca30d2d165f2d24 (diff) | |
Merge branch 'master' of https://github.com/jellyfin/jellyfin
Diffstat (limited to 'MediaBrowser.Controller/Library/IMediaSourceProvider.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IMediaSourceProvider.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/IMediaSourceProvider.cs b/MediaBrowser.Controller/Library/IMediaSourceProvider.cs index 5bf4acebb..ca4b53fbe 100644 --- a/MediaBrowser.Controller/Library/IMediaSourceProvider.cs +++ b/MediaBrowser.Controller/Library/IMediaSourceProvider.cs @@ -1,4 +1,4 @@ -#pragma warning disable CS1591 +#pragma warning disable CA1002, CS1591 using System.Collections.Generic; using System.Threading; @@ -21,6 +21,10 @@ namespace MediaBrowser.Controller.Library /// <summary> /// Opens the media source. /// </summary> + /// <param name="openToken">Token to use.</param> + /// <param name="currentLiveStreams">List of live streams.</param> + /// <param name="cancellationToken">CancellationToken to use for operation.</param> + /// <returns>The media source wrapped as an awaitable task.</returns> Task<ILiveStream> OpenMediaSource(string openToken, List<ILiveStream> currentLiveStreams, CancellationToken cancellationToken); } } |
