Search code examples
What is the point of ValueTask.Preserve()?...

c#async-awaitvaluetask

Read More
ValueTask instances should not have their result directly accessed unless the instance has already c...

c#.netvaluetask

Read More
How can I call a Task & ValueTask inside a ValueTask?...

c#async-awaitvaluetask

Read More
Do you have to await a ValueTask?...

c#asynchronousvaluetask

Read More
A ValueTask can be awaited only once - what does it mean?...

c#async-awaitvaluetask

Read More
SonarQube gives ValueTask instances returned from method calls should be directly awaited issue...

c#.netasync-awaitsonarqubevaluetask

Read More
Run ValueTasks on a custom thread pool...

c#asynchronousasync-awaitscheduled-tasksvaluetask

Read More
How to release a ValueTask that wraps a side-effect without using await?...

c#asynchronousasync-awaitvaluetaskivaluetasksource

Read More
How to Pause/Resume an asynchronous worker, without incurring memory allocation overhead?...

c#asynchronousvaluetasknito.asyncexivaluetasksource

Read More
What's the right way to implement ValueTaskSource.SetCompleted...

c#asynchronous.net-corevaluetaskivaluetasksource

Read More
Propagating ValueTask to callers...

c#async-awaittaskvaluetask

Read More
How can I synchronously wait for ValueTask without performance loss?...

c#asp.netasynchronousvaluetask

Read More
Should I await ValueTask<T>?...

c#asp.net-coreasynchronousasync-awaitvaluetask

Read More
Why can an async method with return type ValueTask await a regular Task without generating a compile...

c#async-awaittaskvaluetask

Read More
Calling ValueTask method from the non async method in ASP.NET Core?...

c#asp.net-coreasync-awaitvaluetask

Read More
Task.WhenAll for ValueTask...

c#task-parallel-libraryvaluetask

Read More
How to return inside a ValueTask returning lambda of Parallel.ForEachAsync?...

c#asynchronous.net-7.0valuetaskparallel.foreachasync

Read More
Should I return ValueTask if I still use TaskCompletionSource to implement asynchrony?...

c#.net-coreasync-awaittask-parallel-libraryvaluetask

Read More
How to return a canceled ValueTask<T> that propagates an OperationCanceledException, without a...

c#async-awaittask-parallel-librarycancellation-tokenvaluetask

Read More
Why is Task<T> faster than ValueTask<T>?...

c#asynchronoustaskvaluetask

Read More
Is there a ContinueWith for ValueTask?...

c#.netasync-awaitvaluetask

Read More
Do I need to query the .Result property of a ValueTask that I choose to not await?...

c#asynchronousasync-awaittaskvaluetask

Read More
Should we use ValueTask within System.Threading.Channels.WaitToReadAsync loops?...

c#tasksystem.threading.channelsvaluetasknito.asyncex

Read More
Convert a ValueTask<T> to a non generic ValueTask...

c#.netasync-awaitvaluetask

Read More
What is the ValueTask equivalent of Task.CompletedTask?...

c#asynchronoustask-parallel-libraryvaluetask

Read More
Will ValueTask still be beneficial if it depends on a method that returns Task?...

c#asynchronousasync-awaitvaluetask

Read More
Awaiting a single .NET event with a ValueTask...

c#.net-coretaskcompletionsourcevaluetask

Read More
ValueTask for synchronous method...

c#asynchronoustaskvaluetask

Read More
Is it necessary to check `ValueTask.IsCompleted` for performance?...

c#.net-coreasync-awaittaskvaluetask

Read More
The ValueTask<TResult> and the async state machine...

c#.netasync-awaitstate-machinevaluetask

Read More
BackNext