Example #1
0
        /// <summary>
        /// Creates a new <see cref="HttpClient"/> object with some default values, and with the <see cref="IWebProxy"/> object attached.
        /// </summary>
        /// <param name="proxy">The proxy to use for the <see cref="HttpClient"/>.</param>
        /// <returns>A new and configured <see cref="HttpClient"/> instance.</returns>
        protected virtual HttpClient CreateNewClient(IWebProxy proxy)
        {
            var handler = new HttpClientHandler
            {
                MaxConnectionsPerServer = 24,
                Proxy                  = proxy,
                UseCookies             = false,
                UseProxy               = true,
                AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
            };

            ConfigureClientHandlerAction?.Invoke(handler);

            var httpClient = new HttpClient(handler, true);

            httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Hayden/0.7.0");
            httpClient.DefaultRequestHeaders.AcceptEncoding.ParseAdd("gzip, deflate");

            return(httpClient);
        }
Example #2
0
        /// <summary>
        /// Creates a new <see cref="HttpClient"/> object with some default values, and with the <see cref="IWebProxy"/> object attached.
        /// </summary>
        /// <param name="proxy">The proxy to use for the <see cref="HttpClient"/>.</param>
        /// <returns>A new and configured <see cref="HttpClient"/> instance.</returns>
        public virtual HttpClient CreateNewClient(IWebProxy proxy)
        {
            var handler = new HttpClientHandler
            {
                MaxConnectionsPerServer = 24,
                Proxy                  = proxy,
                UseCookies             = false,
                UseProxy               = true,
                AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
            };

            ConfigureClientHandlerAction?.Invoke(handler);

            var httpClient = new HttpClient(handler, true);

            httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0");
            httpClient.DefaultRequestHeaders.AcceptEncoding.ParseAdd("gzip, deflate");

            return(httpClient);
        }