StreamingResponse<T>.EnumerateValues Method
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.
Gets the asynchronously enumerable collection of distinct, streamable items in the response.
public System.Collections.Generic.IAsyncEnumerable<T> EnumerateValues ();
member this.EnumerateValues : unit -> System.Collections.Generic.IAsyncEnumerable<'T>
Public Function EnumerateValues () As IAsyncEnumerable(Of T)
Returns
Remarks
The return value of this method may be used with the "await foreach" statement.
As StreamingResponse<T> explicitly implements IAsyncEnumerable<T>, callers may enumerate a StreamingResponse<T> instance directly instead of calling this method.
Applies to
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.
Azure SDK for .NET