次の方法で共有


IAsyncEnumerable<T> インターフェイス

定義

指定した型の IAsyncEnumerator<T> コレクションに対する非同期反復をサポートする を公開します。

public interface IAsyncEnumerable<out T>
type IAsyncEnumerable<'T> = interface
Public Interface IAsyncEnumerable(Of Out T)

型パラメーター

T

列挙するオブジェクトの型。

この型パラメーターは共変です。 つまり、指定した型、または強い派生型のいずれかを使用することができます。 共変性および反変性の詳細については、「ジェネリックの共変性と反変性」をご覧ください。
派生

メソッド

GetAsyncEnumerator()

コレクションを IAsyncEnumerator<T> 非同期的に反復処理する を返します。

適用対象