jellyfin/Jellyfin.Api/Attributes/ProducesFileAttribute.cs

30 lines
827 B
C#
Raw Normal View History

2021-11-16 16:31:57 +01:00
#pragma warning disable CA1813 // Avoid unsealed attributes
using System;
2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Attributes;
/// <summary>
/// Internal produces image attribute.
/// </summary>
[AttributeUsage(AttributeTargets.Method)]
public class ProducesFileAttribute : Attribute
{
2023-01-31 12:18:10 +01:00
private readonly string[] _contentTypes;
/// <summary>
2023-01-31 12:18:10 +01:00
/// Initializes a new instance of the <see cref="ProducesFileAttribute"/> class.
/// </summary>
2023-01-31 12:18:10 +01:00
/// <param name="contentTypes">Content types this endpoint produces.</param>
public ProducesFileAttribute(params string[] contentTypes)
{
2023-01-31 12:18:10 +01:00
_contentTypes = contentTypes;
}
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets the configured content types.
/// </summary>
/// <returns>the configured content types.</returns>
public string[] ContentTypes => _contentTypes;
}