diff options
| author | Sven Van den brande <sven.vandenbrande@outlook.com> | 2013-11-21 21:26:45 +0100 |
|---|---|---|
| committer | Sven Van den brande <sven.vandenbrande@outlook.com> | 2013-11-21 21:26:45 +0100 |
| commit | ef96c30ba55a3ab964df8d8bbf83ebb06bac5d39 (patch) | |
| tree | fee2977ca9ae48e573ce60da2b37d655d415200e | |
| parent | 71514af96be684dcbf432c5aca37712bbd773740 (diff) | |
Added name to ScheduleRecordingAsync
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvService.cs | 3 | ||||
| -rw-r--r-- | MediaBrowser.sln | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs index 3d68a4ec7..03584240e 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs @@ -36,12 +36,13 @@ namespace MediaBrowser.Controller.LiveTv /// <summary> /// Schedules the recording asynchronous. /// </summary> + /// <param name="name">The name for the recording</param> /// <param name="channelId">The channel identifier.</param> /// <param name="startTime">The start time.</param> /// <param name="duration">The duration.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> - Task ScheduleRecordingAsync(string channelId, DateTime startTime, TimeSpan duration, CancellationToken cancellationToken); + Task ScheduleRecordingAsync(string name,string channelId, DateTime startTime, TimeSpan duration, CancellationToken cancellationToken); /// <summary> /// Gets the channel image asynchronous. diff --git a/MediaBrowser.sln b/MediaBrowser.sln index 0c5360b49..744debbcd 100644 --- a/MediaBrowser.sln +++ b/MediaBrowser.sln @@ -237,7 +237,4 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection - GlobalSection(Performance) = preSolution - HasPerformanceSessions = true - EndGlobalSection EndGlobal |
