首页 > 代码库 > .net读取异步Post的内容

.net读取异步Post的内容

//读取微信Post过来的XML内容
                byte[] input = HttpContext.Current.Request.BinaryRead(HttpContext.Current.Request.TotalBytes);
                string postData = http://www.mamicode.com/Encoding.GetEncoding("utf-8").GetString(input);

.net读取异步Post的内容