Argentini.Halide.H3Http.GetWebPage C# (CSharp) Method

GetWebPage() public static method

Perform an Http GET operation, and return the result.
public static GetWebPage ( String url ) : String
url String Fully qualified URL to the remote page.
return String
        public static String GetWebPage(String url)
        {
            return GetWebPage(url, GetWebPageMethod.Get, null, null, null, null);
        }

Same methods

H3Http::GetWebPage ( String url, CookieContainer cookies ) : String
H3Http::GetWebPage ( String url, GetWebPageMethod method, CookieContainer cookies, String postData, String userName, String password ) : String
H3Http::GetWebPage ( String url, GetWebPageMethod method, CookieContainer cookies, String postData, String userName, String password, Int32 timeoutMilliseconds ) : String
H3Http::GetWebPage ( String url, GetWebPageMethod method, String postData ) : String
H3Http::GetWebPage ( String url, Int32 timeoutMilliseconds ) : String
H3Http::GetWebPage ( String url, String userName, String password ) : String