BetterHttpClient.ProxyManager.DownloadBytes C# (CSharp) Метод

DownloadBytes() публичный Метод

Downloads url using GET.
Page has returned 404 not found
public DownloadBytes ( string url, CookieContainer cookies = null, NameValueCollection customHeaders = null ) : byte[]
url string
cookies System.Net.CookieContainer
customHeaders System.Collections.Specialized.NameValueCollection Specify custom headers for this request
Результат byte[]
        public byte[] DownloadBytes(string url, CookieContainer cookies = null, NameValueCollection customHeaders = null)
        {
            return DownloadBytes(url, null, cookies, customHeaders);
        }
        /// <summary>

Same methods

ProxyManager::DownloadBytes ( string url, NameValueCollection data, CookieContainer cookies = null, NameValueCollection customHeaders = null ) : byte[]
ProxyManager::DownloadBytes ( string url, NameValueCollection data, Proxy proxy, CookieContainer cookies = null, NameValueCollection customHeaders = null ) : byte[]