microsoft / AzureTipsAndTricks

Learn some of our favorite Azure tips and tricks—some long-standing, and new ones that have recently been added to become more productive with Azure. Star the repo now to shave hours off your coding tasks tomorrow.
http://azuredev.tips
Creative Commons Attribution 4.0 International
1.49k stars 489 forks source link

Tip 141 - Async write of multiple files to response #171

Open njannink opened 1 year ago

njannink commented 1 year ago

What would you like to know?

When trying the example of tip 141 on the latest version you will get the following error:

Synchronous operations are disallowed. Call WriteAsync or set AllowSynchronousIO to true instead.

The simple way is to set AllowSynchronousIO to true. But I wonder isn't there a way to do this asynchronous?