Esempio n. 1
0
        /// <summary>
        /// 微信域名验证
        /// </summary>
        public void Validity(string wxPlatType)
        {
            VerifyValidity vv          = new VerifyValidity(HttpContext.Current.Request);
            string         strResponse = string.Empty;

            //企业号验证
            if (wxPlatType == WxPlatFormTypeEnum.QY.ToString())
            {
                strResponse = vv.GetQYValidityResult();
            }
            else
            {
                strResponse = vv.GetGZValidityResult();
            }

            if (!string.IsNullOrEmpty(strResponse))
            {
                HttpServerHelper.ResponseWrite(strResponse);
            }
        }
Esempio n. 2
0
 public void UpLoad(UpLoadBuryData upLoadBuryData)
 {
     HttpServerHelper.UpLoadBury(upLoadBuryData);
 }
Esempio n. 3
0
 //发送
 public void MsgResponse(string sMsgResponse)
 {
     HttpServerHelper.ResponseWrite(sMsgResponse);
 }