ListResponse<T> class

namespace: Serenity.Services   assemblySerenity.Net.Services

The response model for a list service.

public class ListResponse<T> : ServiceResponse, IListResponse
parameter description
T Type of the returned entities.

Public Members

name description
ListResponse() The default constructor.
Entities { get; set; } Entities
Skip { get; set; }
Take { get; set; }
TotalCount { get; set; }
Values { get; set; } List of distinct values, if DistinctFields are passed in the list request. Each element of the list is an array of distinct values if multiple distinct fields are requested.

See Also