diff options
| author | Luke <luke.pulverenti@gmail.com> | 2015-03-25 00:59:49 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2015-03-25 00:59:49 -0400 |
| commit | aa079120059699f4778d80f55e68883d75d26b3a (patch) | |
| tree | 90ef957908152d11333fde96b95d609309560bb2 /MediaBrowser.Model/ApiClient | |
| parent | 9926be0d9de688c04065c916e44ada4177b38a80 (diff) | |
| parent | 29b6ee4b6f336f08807a7ed7bdb22a1ef68269c0 (diff) | |
Merge pull request #1051 from MediaBrowser/dev
3.0.5557.20000 Beta
Diffstat (limited to 'MediaBrowser.Model/ApiClient')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IConnectionManager.cs | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index ef99e444f..14cdbdc9a 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -38,11 +38,6 @@ namespace MediaBrowser.Model.ApiClient event EventHandler<GenericEventArgs<RemoteLogoutReason>> RemoteLoggedOut; /// <summary> - /// Occurs when [authenticated]. - /// </summary> - event EventHandler<GenericEventArgs<AuthenticationResult>> Authenticated; - - /// <summary> /// Gets the API URL. /// </summary> /// <param name="handler">The handler.</param> @@ -690,8 +685,9 @@ namespace MediaBrowser.Model.ApiClient /// Stops the transcoding processes. /// </summary> /// <param name="deviceId">The device identifier.</param> + /// <param name="streamId">The stream identifier.</param> /// <returns>Task.</returns> - Task StopTranscodingProcesses(string deviceId); + Task StopTranscodingProcesses(string deviceId, string streamId); /// <summary> /// Sets the index of the audio stream. diff --git a/MediaBrowser.Model/ApiClient/IConnectionManager.cs b/MediaBrowser.Model/ApiClient/IConnectionManager.cs index 6ff48a044..84a815dfc 100644 --- a/MediaBrowser.Model/ApiClient/IConnectionManager.cs +++ b/MediaBrowser.Model/ApiClient/IConnectionManager.cs @@ -35,7 +35,13 @@ namespace MediaBrowser.Model.ApiClient /// Occurs when [remote logged out]. /// </summary> event EventHandler<EventArgs> RemoteLoggedOut; - + + /// <summary> + /// Gets the device. + /// </summary> + /// <value>The device.</value> + IDevice Device { get; } + /// <summary> /// Gets the connect user. /// </summary> |
