mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-28 03:34:46 +03:00
updated nuget
This commit is contained in:
@@ -601,17 +601,17 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// Sets the index of the audio stream.
|
||||
/// </summary>
|
||||
/// <param name="sessionId">The session identifier.</param>
|
||||
/// <param name="volume">The volume.</param>
|
||||
/// <param name="index">The index.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task SetAudioStreamIndex(string sessionId, int? volume);
|
||||
Task SetAudioStreamIndex(string sessionId, int index);
|
||||
|
||||
/// <summary>
|
||||
/// Sets the index of the subtitle stream.
|
||||
/// </summary>
|
||||
/// <param name="sessionId">The session identifier.</param>
|
||||
/// <param name="volume">The volume.</param>
|
||||
/// <param name="index">The index.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task SetSubtitleStreamIndex(string sessionId, int? volume);
|
||||
Task SetSubtitleStreamIndex(string sessionId, int? index);
|
||||
|
||||
/// <summary>
|
||||
/// Instructs the client to display a message to the user
|
||||
|
||||
@@ -19,10 +19,6 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// </summary>
|
||||
event EventHandler<GenericEventArgs<string>> UserDeleted;
|
||||
/// <summary>
|
||||
/// Occurs when [scheduled task started].
|
||||
/// </summary>
|
||||
event EventHandler<GenericEventArgs<string>> ScheduledTaskStarted;
|
||||
/// <summary>
|
||||
/// Occurs when [scheduled task ended].
|
||||
/// </summary>
|
||||
event EventHandler<GenericEventArgs<TaskResult>> ScheduledTaskEnded;
|
||||
@@ -97,7 +93,7 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// <summary>
|
||||
/// Occurs when [send text command].
|
||||
/// </summary>
|
||||
event EventHandler<GenericEventArgs<string>> SendTextCommand;
|
||||
event EventHandler<GenericEventArgs<string>> SendStringCommand;
|
||||
/// <summary>
|
||||
/// Occurs when [set volume command].
|
||||
/// </summary>
|
||||
@@ -109,7 +105,7 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// <summary>
|
||||
/// Occurs when [set video stream index command].
|
||||
/// </summary>
|
||||
event EventHandler<GenericEventArgs<int>> SetVideoStreamIndexCommand;
|
||||
event EventHandler<GenericEventArgs<int>> SetSubtitleStreamIndexCommand;
|
||||
/// <summary>
|
||||
/// Occurs when [sessions updated].
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user