jellyfin/MediaBrowser.Common/Net/NamedClient.cs

24 lines
655 B
C#
Raw Normal View History

2020-08-31 16:47:38 +02:00
namespace MediaBrowser.Common.Net
{
/// <summary>
/// Registered http client names.
/// </summary>
public static class NamedClient
{
/// <summary>
/// Gets the value for the default named http client.
/// </summary>
public const string Default = nameof(Default);
/// <summary>
/// Gets the value for the MusicBrainz named http client.
/// </summary>
public const string MusicBrainz = nameof(MusicBrainz);
2022-03-08 22:57:47 +01:00
/// <summary>
/// Gets the value for the DLNA named http client.
/// </summary>
public const string Dlna = nameof(Dlna);
2020-08-31 16:47:38 +02:00
}
}