IQueryResultEnumerable<T> Interface
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.
The IQueryResultEnumerable{T} interface provides extra details returned with response e.g. total count and next link
public interface IQueryResultEnumerable<out T> : System.Collections.Generic.IEnumerable<out T>
type IQueryResultEnumerable<'T> = interface
interface seq<'T>
interface IEnumerable
Public Interface IQueryResultEnumerable(Of Out T)
Implements IEnumerable(Of Out T)
Type Parameters
- T
- Derived
- Implements
Properties
NextLink |
Gets the link to next page of result that is returned in response headers. |
TotalCount |
Gets the total count for all the records that would have been returned ignoring any take paging/limit clause specified by client or server. |
Extension Methods
ToCommaSeparatedString<T>(IEnumerable<T>) |
Converts the elements of a collection to strings and concatenates them into a comma-separated list, or returns null for null or empty collections. |
Applies to
Azure SDK for .NET