diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-31 17:04:22 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-31 17:04:22 -0400 |
| commit | bb5386bb3a8b71406728f8bd2249cf6e02a34ed2 (patch) | |
| tree | 7fddf86baf42e93c7544053b30e215aaec8ac1c2 /MediaBrowser.Model/ApiClient/IApiClient.cs | |
| parent | c0801e4f6de87f6a14409b7f399cfd52b3ce88e8 (diff) | |
added more remote control commands
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index 28c5822e9..dc5e26be3 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -593,17 +593,9 @@ namespace MediaBrowser.Model.ApiClient /// Sends the command asynchronous. /// </summary> /// <param name="sessionId">The session identifier.</param> - /// <param name="request">The request.</param> - /// <returns>Task.</returns> - Task SendCommandAsync(string sessionId, GenericCommand request); - - /// <summary> - /// Sends a system command to the client - /// </summary> - /// <param name="sessionId">The session id.</param> /// <param name="command">The command.</param> /// <returns>Task.</returns> - Task SendSystemCommandAsync(string sessionId, SystemCommand command); + Task SendCommandAsync(string sessionId, GeneralCommand command); /// <summary> /// Instructs the client to display a message to the user |
