< Summary - Jellyfin

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

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Subtitles/SubtitleSearchRequest.cs

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7using MediaBrowser.Controller.Providers;
 8using MediaBrowser.Model.Entities;
 9
 10namespace MediaBrowser.Controller.Subtitles
 11{
 12    public class SubtitleSearchRequest : IHasProviderIds
 13    {
 14        public SubtitleSearchRequest()
 15        {
 016            SearchAllProviders = true;
 017            ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 18
 019            DisabledSubtitleFetchers = Array.Empty<string>();
 020            SubtitleFetcherOrder = Array.Empty<string>();
 021        }
 22
 23        public string Language { get; set; }
 24
 25        public string TwoLetterISOLanguageName { get; set; }
 26
 27        public VideoContentType ContentType { get; set; }
 28
 29        public string MediaPath { get; set; }
 30
 31        public string SeriesName { get; set; }
 32
 33        public string Name { get; set; }
 34
 35        public int? IndexNumber { get; set; }
 36
 37        public int? IndexNumberEnd { get; set; }
 38
 39        public int? ParentIndexNumber { get; set; }
 40
 41        public int? ProductionYear { get; set; }
 42
 43        public long? RuntimeTicks { get; set; }
 44
 45        public bool IsPerfectMatch { get; set; }
 46
 47        public Dictionary<string, string> ProviderIds { get; set; }
 48
 49        public bool SearchAllProviders { get; set; }
 50
 51        public string[] DisabledSubtitleFetchers { get; set; }
 52
 53        public string[] SubtitleFetcherOrder { get; set; }
 54
 55        public bool IsAutomated { get; set; }
 56    }
 57}

Methods/Properties

.ctor()