mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
a1e911669a
* Can download audio tracks from Youtube, re-encoding to XWM in the process
26 lines
833 B
C#
26 lines
833 B
C#
using System;
|
|
using System.Net;
|
|
using SysHttp = System.Net.Http;
|
|
namespace Wabbajack.Common.Http
|
|
{
|
|
public static class ClientFactory
|
|
{
|
|
private static SysHttp.SocketsHttpHandler _socketsHandler { get; }
|
|
public static SysHttp.HttpClient Client { get; }
|
|
internal static CookieContainer Cookies { get; }
|
|
|
|
static ClientFactory()
|
|
{
|
|
Cookies = new CookieContainer();
|
|
_socketsHandler = new SysHttp.SocketsHttpHandler
|
|
{
|
|
CookieContainer = Cookies,
|
|
MaxConnectionsPerServer = 20,
|
|
PooledConnectionLifetime = TimeSpan.FromMilliseconds(100),
|
|
PooledConnectionIdleTimeout = TimeSpan.FromMilliseconds(100)
|
|
};
|
|
Client = new SysHttp.HttpClient(_socketsHandler);
|
|
}
|
|
}
|
|
}
|