aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/NamedClient.cs
blob: 9c5544b0ff3c4ae435f8d4a5147e40783a1cc0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace MediaBrowser.Common.Net
{
    /// <summary>
    /// Registered http client names.
    /// </summary>
    public static class NamedClient
    {
        /// <summary>
        /// Gets the value for the default named http client which implements happy eyeballs.
        /// </summary>
        public const string Default = nameof(Default);

        /// <summary>
        /// Gets the value for the MusicBrainz named http client.
        /// </summary>
        public const string MusicBrainz = nameof(MusicBrainz);

        /// <summary>
        /// Gets the value for the DLNA named http client.
        /// </summary>
        public const string Dlna = nameof(Dlna);

        /// <summary>
        /// Non happy eyeballs implementation.
        /// </summary>
        public const string DirectIp = nameof(DirectIp);
    }
}