Get() public static method

public static Get ( string url, int timeout, string contentType = "application/x-www-form-urlencoded" ) : string
url string
timeout int
contentType string
return string
Exemplo n.º 1
0
        private string GetResponseTxt(string notify_id)
        {
            string veryfy_url = AlipayConfig.ALI_HTTPS_VERYFY_URL + "&partner=" + AlipayConfig.ALI_PARTER + "&notify_id=" + notify_id;
            string response   = HTTPHelper.Get(veryfy_url, 120000);

            return(response);
        }