You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
549 B
25 lines
549 B
using System;
|
|
using System.Net.Http;
|
|
|
|
namespace MediaBrowser.ServerApplication.Native
|
|
{
|
|
/// <summary>
|
|
/// Class HttpClientFactory
|
|
/// </summary>
|
|
public static class HttpClientFactory
|
|
{
|
|
/// <summary>
|
|
/// Gets the HTTP client.
|
|
/// </summary>
|
|
/// <param name="enableHttpCompression">if set to <c>true</c> [enable HTTP compression].</param>
|
|
/// <returns>HttpClient.</returns>
|
|
public static HttpClient GetHttpClient(bool enableHttpCompression)
|
|
{
|
|
return new HttpClient()
|
|
{
|
|
Timeout = TimeSpan.FromSeconds(20)
|
|
};
|
|
}
|
|
}
|
|
}
|