Search code examples
Why does Task.WhenAll fail to Complete when all its input tasks are completed if locks are involved...


c#.net-coretask-parallel-librarydeadlock

Read More
How to limit the amount of concurrent async I/O operations?...


c#asynchronousasync-awaitconcurrencytask-parallel-library

Read More
Task.Run with parameter(s)?...


c#lambdatask-parallel-librarytask

Read More
Task.WhenEach is appending to the task list safe?...


c#async-awaittask-parallel-library

Read More
AsParallel.ForAll with async code doesn't wait for completion...


c#async-awaittask-parallel-libraryplinq

Read More
How to wrap a Task in a Task<TResult> without using an async state machine?...


c#asynchronousasync-awaittasktask-parallel-library

Read More
Should Task.Wait be deprecated?...


c#.netasynchronousasync-awaittask-parallel-library

Read More
Difference between Task.Run and QueueBackgroundWorkItem in Asp.Net...


c#.netasp.net-mvcasynchronoustask-parallel-library

Read More
Silverlight and Wait that fails...


c#multithreadingsilverlighttask-parallel-library

Read More
When to dispose CancellationTokenSource?...


c#task-parallel-libraryplinqcancellationtokensourcecancellation-token

Read More
Task.WhenAll but process results one by one...


c#asynchronousasync-awaittasktask-parallel-library

Read More
Fire and forget, using Task.Run or just calling an async method without await...


c#async-awaittasktask-parallel-libraryfire-and-forget

Read More
Task.WhenAll vs Parallel.ForEachAsync - Which approach is best and why?...


c#multithreadingasynchronoustask-parallel-libraryparallel.foreachasync

Read More
How can I await an enumerable of tasks and stop when a number of tasks have completed?...


c#.netconcurrencytasktask-parallel-library

Read More
Why are Minimal API endpoints waiting for Tasks?...


c#asp.net-coretask-parallel-libraryminimal-apis

Read More
Throwing immediately from async method...


c#.nettask-parallel-libraryasync-await

Read More
Creating threads - new Thread() vs Task.Factory.StartNew...


c#multithreading.net-4.0tasktask-parallel-library

Read More
Why do `ParallelQuery.ToArray()` and `ToList()` return ordered sequence?...


c#multithreadingtask-parallel-libraryplinq

Read More
Should we provide both asynchronous and synchronous implementations of SmtpClient wrapper?...


c#.netasynchronoustask-parallel-libraryasync-await

Read More
Task.WaitAll does not throw as expected...


c#multithreadingtask-parallel-library

Read More
Why does Task.Delay() allow an infinite delay?...


.net.net-4.0task-parallel-library.net-4.5async-await

Read More
Task.WhenAny with Task.Delay to implement a timeout mechanism does not work reliable...


async-awaittimeouttasktask-parallel-libraryflakyness

Read More
What is the use for Task.FromResult<TResult>?...


c#.nettask-parallel-librarytaskasync-await

Read More
Passing CancellationTokenSource to awaited Task...


c#task-parallel-library

Read More
Do I need to check the CancellationToken in Parallel.ForEach?...


c#task-parallel-libraryparallel.foreachcancellation-token

Read More
Why can't I catch AbandonedMutexException after a task...


c#multithreadingtask-parallel-librarymutex

Read More
When to use BlockingCollection and when ConcurrentBag instead of List<T>?...


c#wpfmultithreadinglinqtask-parallel-library

Read More
Does the use of async/await create a new thread?...


c#multithreadingasync-awaittask-parallel-libraryc#-5.0

Read More
Task.Delay never completing...


c#.nettask-parallel-libraryasync-awaitdelay

Read More
Why does direct throwing OperationCanceledException cancels the task...


c#tasktask-parallel-library

Read More
BackNext