ConfiguredCancelableAsyncEnumerable<T> Struct

Definition

Provides an awaitable async enumerable that enables cancelable iteration and configured awaits.

generic <typename T>
public value class ConfiguredCancelableAsyncEnumerable
public readonly struct ConfiguredCancelableAsyncEnumerable<T>
type ConfiguredCancelableAsyncEnumerable<'T> = struct
Public Structure ConfiguredCancelableAsyncEnumerable(Of T)

Type Parameters

T

The type of values to enumerate.

Inheritance
ConfiguredCancelableAsyncEnumerable<T>

Methods

ConfigureAwait(Boolean)

Configures how awaits on the tasks returned from an async iteration will be performed.

GetAsyncEnumerator()

Returns an enumerator that iterates asynchronously through collections that enables cancelable iteration and configured awaits.

WithCancellation(CancellationToken)

Sets the CancellationToken to be passed to GetAsyncEnumerator(CancellationToken) when iterating.

Applies to