namespace MediaBrowser.Common.Net
{
    /// 
    /// Registered http client names.
    /// 
    public static class NamedClient
    {
        /// 
        /// Gets the value for the default named http client which implements happy eyeballs.
        /// 
        public const string Default = nameof(Default);
        /// 
        /// Gets the value for the MusicBrainz named http client.
        /// 
        public const string MusicBrainz = nameof(MusicBrainz);
        /// 
        /// Gets the value for the DLNA named http client.
        /// 
        public const string Dlna = nameof(Dlna);
        /// 
        /// Non happy eyeballs implementation.
        /// 
        public const string DirectIp = nameof(DirectIp);
    }
}