2022-10-20 20:17:56 +00:00
|
|
|
namespace MediaBrowser.Common.Net
|
2020-08-31 14:47:38 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Registered http client names.
|
|
|
|
/// </summary>
|
|
|
|
public static class NamedClient
|
|
|
|
{
|
|
|
|
/// <summary>
|
2022-10-20 20:17:56 +00:00
|
|
|
/// Gets the value for the default named http client which implements happy eyeballs.
|
2020-08-31 14:47:38 +00:00
|
|
|
/// </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 21:57:47 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the value for the DLNA named http client.
|
|
|
|
/// </summary>
|
|
|
|
public const string Dlna = nameof(Dlna);
|
2022-10-20 20:17:56 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Non happy eyeballs implementation.
|
|
|
|
/// </summary>
|
|
|
|
public const string DirectIp = nameof(DirectIp);
|
2020-08-31 14:47:38 +00:00
|
|
|
}
|
|
|
|
}
|