-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Streaming API support to MVC #11558
Comments
It's not clear what's being asked here. Closing, until we have a concrete proposal here. |
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process. |
Thanks for contacting us. |
This work depends on dotnet/runtime#1570 |
Can confirm with @mkArtakMSFT this is in the right spot. Also can confirm this and dotnet/runtime#1570 would be very-very nice-to-have items. Anything that makes it easier [more elegant, discoverable, yada^2] is a good thing IMO. |
We're still waiting for the above referenced issue from the dotnet/runtime repo to be delivered to be able to get to this. Synced up with @ericstj and that is going to land no sooner than 6.0-preview4, so we're still blocked here. |
## Description System.Text.Json recently added support for streaming IAsyncEnumerable types based on an ask from the ASP.NET Core team. This PR enables MVC to leverage this feature. ## Customer Impact Using IAsyncEnumerable with System.Text.Json will result in data to be streamed rather than buffered and serialized. ## Regression? - [ ] Yes - [x] No [If yes, specify the version the behavior has regressed from] ## Risk - [ ] High - [ ] Medium - [x] Low [Justify the selection above] The feature has been well-tested in the runtime. This is simply removing additional buffering that was previously performed by MVC before invoking the serializer. ## Verification - [x] Manual (required) - [x] Automated ## Packaging changes reviewed? - [ ] Yes - [x] No - [ ] N/A Addresses #11558 #23203
See previous discussions here - #4833
This depends on:
The text was updated successfully, but these errors were encountered: