.net读取异步Post的内容

//读取微信Post过来的XML内容
                byte[] input = HttpContext.Current.Request.BinaryRead(HttpContext.Current.Request.TotalBytes);
                string postData = Encoding.GetEncoding("utf-8").GetString(input);
原文地址:https://www.cnblogs.com/mengfanrong/p/5145910.html