public static string ToEncryptXml(this IWeChatResponseXmlMessage msg, string encodingAESKey, string appid)
        {
            string originalMsg = XmlSerializationHelper.SerializeObject(msg);

            return(Tencent.Cryptography.AES_encrypt(originalMsg, encodingAESKey, appid));
        }
 public static string ToXml(this IWeChatResponseXmlMessage msg)
 {
     return(XmlSerializationHelper.SerializeObject(msg));
 }