mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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);
 | 
						|
    }
 | 
						|
}
 |