< Summary - Jellyfin

Information
Class: Jellyfin.Api.Formatters.XmlOutputFormatter
Assembly: Jellyfin.Api
File(s): /srv/git/jellyfin/Jellyfin.Api/Formatters/XmlOutputFormatter.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 19
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/Jellyfin.Api/Formatters/XmlOutputFormatter.cs

#LineLine coverage
 1using System.Net.Mime;
 2using Microsoft.AspNetCore.Mvc.Formatters;
 3
 4namespace Jellyfin.Api.Formatters;
 5
 6/// <summary>
 7/// Xml output formatter.
 8/// </summary>
 9public sealed class XmlOutputFormatter : StringOutputFormatter
 10{
 11    /// <summary>
 12    /// Initializes a new instance of the <see cref="XmlOutputFormatter"/> class.
 13    /// </summary>
 2114    public XmlOutputFormatter()
 15    {
 2116        SupportedMediaTypes.Clear();
 2117        SupportedMediaTypes.Add(MediaTypeNames.Text.Xml);
 2118    }
 19}

Methods/Properties

.ctor()