public string GetPaySign()
        {
            var source = this._deliverNotifyRequest.GetSignSource();
            //// source.Add("appkey", wxPayConfig.AppKey);
            var computeSign = wxPayHelper.GetBizSign(source);

            return(computeSign.ToUpper());
        }
Esempio n. 2
0
        public bool IsPaySignPassed(string notifyPaySign)
        {
            var computeSign = wxPayHelper.GetBizSign(this._alarmResponse.GetSignSource());

            return(computeSign.ToUpper().Equals(notifyPaySign.ToUpper()));
        }