< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Events.Session.SessionStartedEventArgs
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Events/Session/SessionStartedEventArgs.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 19
Line coverage: 100%
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%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Events/Session/SessionStartedEventArgs.cs

#LineLine coverage
 1using Jellyfin.Data.Events;
 2using MediaBrowser.Controller.Session;
 3
 4namespace MediaBrowser.Controller.Events.Session
 5{
 6    /// <summary>
 7    /// An event that fires when a session is started.
 8    /// </summary>
 9    public class SessionStartedEventArgs : GenericEventArgs<SessionInfo>
 10    {
 11        /// <summary>
 12        /// Initializes a new instance of the <see cref="SessionStartedEventArgs"/> class.
 13        /// </summary>
 14        /// <param name="arg">The session info.</param>
 1615        public SessionStartedEventArgs(SessionInfo arg) : base(arg)
 16        {
 1617        }
 18    }
 19}