NamedClient.cs 834 B

12345678910111213141516171819202122232425262728
  1. namespace MediaBrowser.Common.Net
  2. {
  3. /// <summary>
  4. /// Registered http client names.
  5. /// </summary>
  6. public static class NamedClient
  7. {
  8. /// <summary>
  9. /// Gets the value for the default named http client which implements happy eyeballs.
  10. /// </summary>
  11. public const string Default = nameof(Default);
  12. /// <summary>
  13. /// Gets the value for the MusicBrainz named http client.
  14. /// </summary>
  15. public const string MusicBrainz = nameof(MusicBrainz);
  16. /// <summary>
  17. /// Gets the value for the DLNA named http client.
  18. /// </summary>
  19. public const string Dlna = nameof(Dlna);
  20. /// <summary>
  21. /// Non happy eyeballs implementation.
  22. /// </summary>
  23. public const string DirectIp = nameof(DirectIp);
  24. }
  25. }