BetterHttpClient.ProxyManager.GetPage C# (CSharp) Method

GetPage() public method

Downloads url using GET.
Page has returned 404 not found
public GetPage ( string url, string requiredString = null, CookieContainer cookies = null, NameValueCollection customHeaders = null ) : string
url string Url of webpage
requiredString string
cookies System.Net.CookieContainer Cookies for request. Left null if you don't want to use cookies
customHeaders System.Collections.Specialized.NameValueCollection Specify custom headers for this request
return string
        public string GetPage(string url, string requiredString = null, CookieContainer cookies = null, NameValueCollection customHeaders = null)
        {
            return PostPage(url, null, requiredString, cookies, customHeaders);
        }