CRL.Business.OnlinePay.Company.Lianlian.LianlianCompany.GetWapAuthReturn C# (CSharp) Метод

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

public GetWapAuthReturn ( System context ) : bool
context System
Результат bool
        public bool GetWapAuthReturn(System.Web.HttpContext context)
        {
            var response = Message.MessageBase.FromRequest<Message.WapAuth.PayReturn>(context.Request.Form);
            var a = response.CheckSign();
            if (!a)
            {
                return false;
            }
            return response.result_pay == "SUCCESS";
        }