This repository was archived by the owner on Nov 20, 2018. It is now read-only.
This repository was archived by the owner on Nov 20, 2018. It is now read-only.
Remove default buffering for request form bodies #578
Closed
Description
Does HttpRequest.Form really need to buffer the full request body? There's no mechanical requirement for it, the parser works just fine on streamed input. Once parsed the form contents are cached. The only reason you'd need access to the raw body again later is if some other library wanted to reparse it in their own way (e.g. Nancy), but you could enable buffering independently for those scenarios.