In the HttpApplication.BeginRequest event, how can I read the entire raw request body? When I try to read it the InputStream is of 0 length, leadin
HttpApplication.BeginRequest
InputStream
In ASP.NET Core 2:
using (var reader = new StreamReader(HttpContext.Request.Body)) { var body = reader.ReadToEnd(); }