What is the alternate of HttpRequest.EnableRewind() in ASP.NET Core 3.0?
The alternate is HttpRequestRewindExtensions.EnableBuffering()
, indeed. You can see here that internally it just calls EnableRewind()
.
The alternate is HttpRequestRewindExtensions.EnableBuffering()
, indeed. You can see here that internally it just calls EnableRewind()
.