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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET