示例#1
0
        public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO <string> CreateTempQrcode(Jinher.AMP.BTP.Deploy.CustomDTO.WeChat.TempQrcodeDTO param)
        {
            //定义返回值
            Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO <string> result;

            try
            {
                //调用代理方法
                result = base.Channel.CreateTempQrcode(param);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }
示例#2
0
 /// <summary>
 /// 临时二维码请求
 /// </summary>
 public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO <string> CreateTempQrcode(Jinher.AMP.BTP.Deploy.CustomDTO.WeChat.TempQrcodeDTO param)
 {
     base.Do();
     return(this.CreateTempQrcodeExt(param));
 }