ProcessNotify() public method

public ProcessNotify ( ) : void
return void
Example #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            log4net.LogManager.GetLogger("sgspay").Error("WxPay ResultNotifyPage.");
            ResultNotify resultNotify = new ResultNotify(this);

            resultNotify.ProcessNotify();
        }
Example #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            ResultNotify resultNotify = new ResultNotify(this);

            resultNotify.ProcessNotify();
        }
Example #3
0
 /// <summary>
 /// wx异步返回处理
 /// </summary>
 /// <param name="context"></param>
 /// <returns></returns>
 public WxPayAPI.ResultNotify.WXPayBack WXJSApi_Notify(HttpContext context)
 {
     ResultNotify resultNotify = new ResultNotify(context);
     return resultNotify.ProcessNotify();
 }
Example #4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     ResultNotify resultNotify = new ResultNotify(this);
     resultNotify.ProcessNotify();
 }