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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET