NamedClient.cs 655 B

1234567891011121314151617181920212223
  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.
  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. }
  21. }