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.Controller/Session/ISessionManager.cs | |
| parent | c0801e4f6de87f6a14409b7f399cfd52b3ce88e8 (diff) | |
added more remote control commands
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 459e43d08..434c51336 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -84,15 +84,15 @@ namespace MediaBrowser.Controller.Session Task ReportSessionEnded(Guid sessionId); /// <summary> - /// Sends the system command. + /// Sends the general command. /// </summary> /// <param name="controllingSessionId">The controlling session identifier.</param> - /// <param name="sessionId">The session id.</param> + /// <param name="sessionId">The session identifier.</param> /// <param name="command">The command.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> - Task SendSystemCommand(Guid controllingSessionId, Guid sessionId, SystemCommand command, CancellationToken cancellationToken); - + Task SendGeneralCommand(Guid controllingSessionId, Guid sessionId, GeneralCommand command, CancellationToken cancellationToken); + /// <summary> /// Sends the message command. /// </summary> |
