共用方式為


MessageFormatterEnumerableTracker.CreateEnumerableProxy<T> 方法

定義

取用者用來建構 Proxy,以實 IAsyncEnumerable<T> 作並從遠端產生器取得其所有值。

public System.Collections.Generic.IAsyncEnumerable<T> CreateEnumerableProxy<T> (object? handle, System.Collections.Generic.IReadOnlyList<T>? prefetchedItems);
member this.CreateEnumerableProxy : obj * System.Collections.Generic.IReadOnlyList<'T> -> System.Collections.Generic.IAsyncEnumerable<'T>
Public Function CreateEnumerableProxy(Of T) (handle As Object, prefetchedItems As IReadOnlyList(Of T)) As IAsyncEnumerable(Of T)

類型參數

T

可列舉所產生的值型別。

參數

handle
Object

產生器所指定的控制碼,用來取得更多值或處置列舉值。 可能是 null 表示不會再有任何值。

prefetchedItems
IReadOnlyList<T>

可列舉控制碼中包含的專案清單。

傳回

列舉程式。

適用於