use named http clients

This commit is contained in:
crobibero
2020-08-31 08:47:38 -06:00
parent abb79bf810
commit 64a811d783
4 changed files with 36 additions and 131 deletions

View File

@@ -0,0 +1,18 @@
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);
}
}