NamedClient.cs 501 B

123456789101112131415161718
  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. }
  17. }