< Summary - Jellyfin

Information
Class: Jellyfin.Database.Implementations.JellyfinDatabaseProviderKeyAttribute
Assembly: Jellyfin.Database.Implementations
File(s): /srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDatabaseProviderKeyAttribute.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 29
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%
get_DatabaseProviderKey()100%11100%

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDatabaseProviderKeyAttribute.cs

#LineLine coverage
 1namespace Jellyfin.Database.Implementations;
 2
 3/// <summary>
 4/// Defines the key of the database provider.
 5/// </summary>
 6[System.AttributeUsage(System.AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
 7public sealed class JellyfinDatabaseProviderKeyAttribute : System.Attribute
 8{
 9    // See the attribute guidelines at
 10    //  http://go.microsoft.com/fwlink/?LinkId=85236
 11    private readonly string _databaseProviderKey;
 12
 13    /// <summary>
 14    /// Initializes a new instance of the <see cref="JellyfinDatabaseProviderKeyAttribute"/> class.
 15    /// </summary>
 16    /// <param name="databaseProviderKey">The key on which to identify the annotated provider.</param>
 2117    public JellyfinDatabaseProviderKeyAttribute(string databaseProviderKey)
 18    {
 2119        _databaseProviderKey = databaseProviderKey;
 2120    }
 21
 22    /// <summary>
 23    /// Gets the key on which to identify the annotated provider.
 24    /// </summary>
 25    public string DatabaseProviderKey
 26    {
 4227        get { return _databaseProviderKey; }
 28    }
 29}