Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in async-await

Start a Task and await later and multiple times

c# async-await task

C# Task returning method in using block

Is ConfigureAwait(false) needed/beneficial when awaiting async calls in Azure Functions

How does using await differ from using ContinueWith when processing async tasks?

When to use TaskEx.Run vs. TaskEx.RunEx

How to use Task.WhenAll() correctly

Can async/await pattern cause performance penalties on minor units of work?

Async Controller Action with Umbraco 7 returns string

Web API Service - How to use "HttpContext.Current" inside async task

awaiting task with timeout

c# .net async-await task

How would you call async method in a method which cannot be async in C# without using .Result

c# async-await asp.net-core

Why Elvis (?.) operator doesn't work with async-await?

Is it possible to await a null literal?

async / await proper error handling

Handling multiple exceptions from async parallel tasks

Accessing Async Property in Razor page

How to declare a not started Task that will Await for another Task?

await AsyncMethod() versus await await Task.Factory.StartNew<TResult>(AsyncMethod)

Async / await with task.run vs task.run and continuewith in .NET 4.0

c# .net async-await

c# 5 async as a sugar syntax (or not)?