< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Events.Authentication.AuthenticationResultEventArgs
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 37
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/Authentication/AuthenticationResultEventArgs.cs

#LineLine coverage
 1using System;
 2using MediaBrowser.Controller.Authentication;
 3using MediaBrowser.Model.Dto;
 4
 5namespace MediaBrowser.Controller.Events.Authentication;
 6
 7/// <summary>
 8/// A class representing an authentication result event.
 9/// </summary>
 10public class AuthenticationResultEventArgs : EventArgs
 11{
 12    /// <summary>
 13    /// Initializes a new instance of the <see cref="AuthenticationResultEventArgs"/> class.
 14    /// </summary>
 15    /// <param name="result">The <see cref="AuthenticationResult"/>.</param>
 1516    public AuthenticationResultEventArgs(AuthenticationResult result)
 17    {
 1518        User = result.User;
 1519        SessionInfo = result.SessionInfo;
 1520        ServerId = result.ServerId;
 1521    }
 22
 23    /// <summary>
 24    /// Gets or sets the user.
 25    /// </summary>
 26    public UserDto User { get; set; }
 27
 28    /// <summary>
 29    /// Gets or sets the session information.
 30    /// </summary>
 31    public SessionInfoDto? SessionInfo { get; set; }
 32
 33    /// <summary>
 34    /// Gets or sets the server id.
 35    /// </summary>
 36    public string? ServerId { get; set; }
 37}