-
-
Notifications
You must be signed in to change notification settings - Fork 142
Open
Labels
Description
In my post http request,the json data is null,bad request 400,If I add code
app.Use(async (context, next) => { if (context.Request.Body.CanSeek) { context.Request.Body.Position = 0; } await next(); });
after app.UseExceptionless();
it worked,It should be the stream position is not reseted to 0 after reading