diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-28 00:42:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-28 00:42:56 -0400 |
| commit | ef7f5622359e2b46a0c8ff32c919729f577e046c (patch) | |
| tree | 3e4a21f55fddc70f9f69e9aa65ace8b85cc2f973 /MediaBrowser.Model/ApiClient | |
| parent | 6c1c913333a3a609edd04196f398a80113f06bba (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Model/ApiClient')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index f919c2c83..eaa3dc15a 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -512,6 +512,22 @@ namespace MediaBrowser.Model.ApiClient Task SendPlayCommandAsync(string sessionId, PlayRequest request); /// <summary> + /// Sends a system command to the client + /// </summary> + /// <param name="sessionId"></param> + /// <param name="command"></param> + /// <returns></returns> + Task SendSystemCommandAsync(string sessionId, SystemCommand command); + + /// <summary> + /// Instructs the client to display a message to the user + /// </summary> + /// <param name="sessionId"></param> + /// <param name="command"></param> + /// <returns></returns> + Task SendMessageCommandAsync(string sessionId, MessageCommand command); + + /// <summary> /// Clears a user's rating for an item /// </summary> /// <param name="itemId">The item id.</param> |
