IQueryResultEnumerable<T> Interface

Definition

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
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
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