AW.Pay.Core.AliPay.GetResponseTxt C# (CSharp) Method

GetResponseTxt() private method

private GetResponseTxt ( string notify_id ) : string
notify_id string
return string
        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;
        }