< Summary - Jellyfin

Information
Class: MediaBrowser.Common.Net.NetworkConfigurationStore
Assembly: MediaBrowser.Common
File(s): /srv/git/jellyfin/MediaBrowser.Common/Net/NetworkConfigurationStore.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 23
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.Common/Net/NetworkConfigurationStore.cs

#LineLine coverage
 1using MediaBrowser.Common.Configuration;
 2
 3namespace MediaBrowser.Common.Net;
 4
 5/// <summary>
 6/// A configuration that stores network related settings.
 7/// </summary>
 8public class NetworkConfigurationStore : ConfigurationStore
 9{
 10    /// <summary>
 11    /// The name of the configuration in the storage.
 12    /// </summary>
 13    public const string StoreKey = "network";
 14
 15    /// <summary>
 16    /// Initializes a new instance of the <see cref="NetworkConfigurationStore"/> class.
 17    /// </summary>
 2218    public NetworkConfigurationStore()
 19    {
 2220        ConfigurationType = typeof(NetworkConfiguration);
 2221        Key = StoreKey;
 2222    }
 23}

Methods/Properties

.ctor()