摘要:
在配置IHttpModule的实现类可以通过:HttpRequest:得到HTTP请求的正文信息:request.InputStream.Position = 0;//设置流的位置StreamReader reader = new StreamReader(request.InputStream);//request请求流string aa = reader.ReadToEnd();request.InputStream.Seek(0, SeekOrigin.End);//还原到原来的位置得到请求的头部信息:HttpRequest request = m_application.Context 阅读全文