TaskAsyncEnumerableExtensions Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides a set of static methods for configuring Task-related behaviors on asynchronous enumerables and disposables.
public ref class TaskAsyncEnumerableExtensions abstract sealed
public static class TaskAsyncEnumerableExtensions
type TaskAsyncEnumerableExtensions = class
Public Module TaskAsyncEnumerableExtensions
- Inheritance
-
TaskAsyncEnumerableExtensions
Methods
ConfigureAwait(IAsyncDisposable, Boolean) |
Configures how awaits on the tasks returned from an async disposable will be performed. |
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean) |
Configures how awaits on the tasks returned from an async iteration will be performed. |
ToBlockingEnumerable<T>(IAsyncEnumerable<T>, CancellationToken) |
Converts an IAsyncEnumerable<T> instance into an IEnumerable<T> that enumerates elements in a blocking manner. |
WithCancellation<T>(IAsyncEnumerable<T>, CancellationToken) |
Sets the CancellationToken to be passed to GetAsyncEnumerator(CancellationToken) when iterating. |