< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Channels.ChannelItemResult
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 29
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 4/15/2026 - 12:14:34 AM Line coverage: 0% (0/2) Total lines: 197/18/2026 - 12:15:19 AM Line coverage: 0% (0/2) Total lines: 29

Coverage delta

Coverage delta 1 -1

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3
 4namespace MediaBrowser.Controller.Channels
 5{
 6    /// <summary>
 7    /// The result of a channel item query.
 8    /// </summary>
 9    public class ChannelItemResult
 10    {
 11        /// <summary>
 12        /// Initializes a new instance of the <see cref="ChannelItemResult"/> class.
 13        /// </summary>
 14        public ChannelItemResult()
 15        {
 016            Items = Array.Empty<ChannelItemInfo>();
 017        }
 18
 19        /// <summary>
 20        /// Gets or sets the items.
 21        /// </summary>
 22        public IReadOnlyList<ChannelItemInfo> Items { get; set; }
 23
 24        /// <summary>
 25        /// Gets or sets the total record count.
 26        /// </summary>
 27        public int? TotalRecordCount { get; set; }
 28    }
 29}

Methods/Properties

.ctor()