How to make multiple async/await chaining in C#? For example, start few HTTP requests and then do not wait all of them, but start new request after each completed?<
You can use the ContinueWith extension method of Tasks for this purpose or the extension that takes a Func and is used to return results.