< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Net.WebSocketMessages.Outbound.SessionsMessage
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Net/WebSocketMessages/Outbound/SessionsMessage.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 26
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%210%
get_MessageType()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Net/WebSocketMessages/Outbound/SessionsMessage.cs

#LineLine coverage
 1using System.Collections.Generic;
 2using System.ComponentModel;
 3using MediaBrowser.Controller.Session;
 4using MediaBrowser.Model.Dto;
 5using MediaBrowser.Model.Session;
 6
 7namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
 8
 9/// <summary>
 10/// Sessions message.
 11/// </summary>
 12public class SessionsMessage : OutboundWebSocketMessage<IReadOnlyList<SessionInfoDto>>
 13{
 14    /// <summary>
 15    /// Initializes a new instance of the <see cref="SessionsMessage"/> class.
 16    /// </summary>
 17    /// <param name="data">Session info.</param>
 18    public SessionsMessage(IReadOnlyList<SessionInfoDto> data)
 019        : base(data)
 20    {
 021    }
 22
 23    /// <inheritdoc />
 24    [DefaultValue(SessionMessageType.Sessions)]
 025    public override SessionMessageType MessageType => SessionMessageType.Sessions;
 26}