Search code examples
What is the correct way to cancel an async operation that doesn't accept a CancellationToken?...


c#.netasynchronoustask-parallel-libraryasync-await

Read More
Ensure that dotnet Tasks are stopped when they go out of garbage collector scope...


c#.nettask-parallel-libraryidisposablefinalizer

Read More
Writing repeating parallel loops for animation, avoiding System.Threading.Tasks.Parallel.For...


c#.nettask-parallel-library.net-4.8

Read More
How to use yield to return the collection of Item in parallel block or Task...


c#task-parallel-librarysystem.reactive

Read More
How to implement an efficient WhenEach that streams an IAsyncEnumerable of task results?...


c#async-awaittask-parallel-libraryc#-8.0iasyncenumerable

Read More
How to use the Task.ContinueWith, to avoid closing the console window?...


c#.netconsole-applicationtask-parallel-library

Read More
Parallel Tasks - Run Parallel threads but dont wait for other Tasks to complete and get the latest d...


c#.netmultithreading.net-coretask-parallel-library

Read More
Multiple awaits vs Task.WaitAll - equivalent?...


c#.netasync-awaittask-parallel-library

Read More
Task return type with and without Async...


c#.netasynchronousasync-awaittask-parallel-library

Read More
Need to understand the usage of SemaphoreSlim...


c#multithreadingtask-parallel-librarysemaphore

Read More
Partition: How to add a wait after every partition...


c#parallel-processingtask-parallel-libraryrate-limiting

Read More
AggregateException from Task.WhenAll only contains first exception when awaited...


c#.netasync-awaittask-parallel-libraryaggregateexception

Read More
I want await to throw AggregateException, not just the first Exception...


c#task-parallel-libraryc#-5.0async-await

Read More
Waiting for async/await inside a task...


c#.nettask-parallel-librarytaskasync-await

Read More
Cold Tasks and TaskExtensions.Unwrap...


c#async-awaittask-parallel-library.net-4.5concurrentdictionary

Read More
Parallel.ForEach with retries not showing all the values...


c#.netwinformstask-parallel-libraryparallel.foreach

Read More
Proper way to implement methods that return Task<T>...


c#asynchronousasync-awaittask-parallel-librarytask

Read More
List<T> thread safety...


c#listc#-4.0task-parallel-libraryparallel-extensions

Read More
Using IProgress when reporting progress for async await code vs progress bar control...


c#multithreadingasynchronousasync-awaittask-parallel-library

Read More
Using "async" (even if it should complete) as part of a MVC route deadlocks the route; how...


asp.net.netasp.net-mvcasynchronoustask-parallel-library

Read More
Axum vs TPL, Async...


.net.net-4.0task-parallel-libraryaxum-lang

Read More
How to get HttpClient response time when running in parallel...


c#asynchronoustask-parallel-library

Read More
Using CancellationToken for timeout in Task.Run does not work...


c#.nettask-parallel-librarycancellationtokensourcecancellation-token

Read More
CancellationToken doesn't cancel blocking method...


c#task-parallel-library.net-4.5cancellation-token

Read More
What is the C# equivalent to Promise.all?...


c#promisetask-parallel-library

Read More
Return new task with return value, using the Task constructor with async action...


c#async-awaittasktask-parallel-library

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


c#multithreadingasynchronoustask-parallel-libraryparallel.foreachasync

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


c#asynchronousasync-awaitconcurrencytask-parallel-library

Read More
Why would you want to use ContinueWith instead of simply appending your continuation code to the end...


c#.nettask-parallel-librarytask

Read More
Can Parallelism in .Net takes over CPU and may deny services to other processes?...


c#.netc#-4.0parallel-processingtask-parallel-library

Read More
BackNext