|
|
@ -46,6 +46,11 @@ namespace MediaBrowser.Controller.Session
|
|
|
|
|
|
|
|
|
|
|
|
event EventHandler<SessionEventArgs> SessionActivity;
|
|
|
|
event EventHandler<SessionEventArgs> SessionActivity;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Occurs when [session controller connected].
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
event EventHandler<SessionEventArgs> SessionControllerConnected;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [capabilities changed].
|
|
|
|
/// Occurs when [capabilities changed].
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
@ -78,6 +83,12 @@ namespace MediaBrowser.Controller.Session
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
SessionInfo LogSessionActivity(string appName, string appVersion, string deviceId, string deviceName, string remoteEndPoint, Jellyfin.Data.Entities.User user);
|
|
|
|
SessionInfo LogSessionActivity(string appName, string appVersion, string deviceId, string deviceName, string remoteEndPoint, Jellyfin.Data.Entities.User user);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Used to report that a session controller has connected.
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
/// <param name="session">The session.</param>
|
|
|
|
|
|
|
|
void OnSessionControllerConnected(SessionInfo session);
|
|
|
|
|
|
|
|
|
|
|
|
void UpdateDeviceName(string sessionId, string reportedDeviceName);
|
|
|
|
void UpdateDeviceName(string sessionId, string reportedDeviceName);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|